﻿@import url('https://api.fontshare.com/v2/css?f[]=clash-display@200,300,400,500,600,700&f[]=satoshi@300,400,500,700,900&display=swap');

:root {
	--bg-deep: #050810;
	--bg-surface: #0a0f1a;
	--bg-elevated: #111827;
	--coral-bright: #ff4d4d;
	--coral-mid: #e63946;
	--coral-dark: #991b1b;
	--cyan-bright: #00e5cc;
	--cyan-mid: #14b8a6;
	--cyan-glow: rgba(0, 229, 204, .4);
	--text-primary: #f0f4ff;
	--text-secondary: #8892b0;
	--text-muted: #5a6480;
	--border-subtle: rgba(136, 146, 176, .15);
	--border-accent: rgba(255, 77, 77, .3);
	--font-display: "Clash Display", system-ui, sans-serif;
	--font-body: "Satoshi", system-ui, sans-serif;
	--font-mono: "SF Mono", "Fira Code", "JetBrains Mono", monospace
}

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

html {
	scroll-behavior: smooth
}

body {
	font-family: var(--font-body);
	background: var(--bg-deep);
	color: var(--text-primary);
	line-height: 1.6;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

::selection {
	background: var(--coral-bright);
	color: var(--bg-deep)
}

.stars {
	position: fixed;
	inset: 0;
	background-image: -o-radial-gradient(20px 30px, 2px 2px, rgba(255, 255, 255, .8), transparent), -o-radial-gradient(40px 70px, 2px 2px, rgba(255, 255, 255, .5), transparent), -o-radial-gradient(90px 40px, 1px 1px, rgba(255, 255, 255, .6), transparent), -o-radial-gradient(130px 80px, 2px 2px, rgba(255, 255, 255, .4), transparent), -o-radial-gradient(160px 120px, 1px 1px, rgba(255, 255, 255, .7), transparent), -o-radial-gradient(200px 60px, 2px 2px, rgba(0, 229, 204, .6), transparent), -o-radial-gradient(250px 150px, 1px 1px, rgba(255, 255, 255, .5), transparent), -o-radial-gradient(300px 40px, 2px 2px, rgba(255, 77, 77, .4), transparent);
	background-image: radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, .8), transparent), radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, .5), transparent), radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, .6), transparent), radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, .4), transparent), radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, .7), transparent), radial-gradient(2px 2px at 200px 60px, rgba(0, 229, 204, .6), transparent), radial-gradient(1px 1px at 250px 150px, rgba(255, 255, 255, .5), transparent), radial-gradient(2px 2px at 300px 40px, rgba(255, 77, 77, .4), transparent);
	background-size: 350px 200px;
	-webkit-animation: twinkle 8s ease-in-out infinite alternate;
	animation: twinkle 8s ease-in-out infinite alternate;
	pointer-events: none;
	z-index: 0
}

@-webkit-keyframes twinkle {
	0% {
		opacity: .4
	}

	to {
		opacity: .7
	}
}

@keyframes twinkle {
	0% {
		opacity: .4
	}

	to {
		opacity: .7
	}
}

.nebula {
	position: fixed;
	inset: 0;
	background: -o-radial-gradient(20% 20%, ellipse 80% 50%, rgba(255, 77, 77, .12), transparent 50%), -o-radial-gradient(80% 30%, ellipse 60% 60%, rgba(0, 229, 204, .08), transparent 50%), -o-radial-gradient(50% 90%, ellipse 90% 70%, rgba(255, 77, 77, .06), transparent 50%);
	background: radial-gradient(ellipse 80% 50% at 20% 20%, rgba(255, 77, 77, .12), transparent 50%), radial-gradient(ellipse 60% 60% at 80% 30%, rgba(0, 229, 204, .08), transparent 50%), radial-gradient(ellipse 90% 70% at 50% 90%, rgba(255, 77, 77, .06), transparent 50%);
	pointer-events: none;
	z-index: 0
}

.container {
	position: relative;
	z-index: 1;
	max-width: 860px;
	margin: 0 auto;
	padding: 60px 24px 40px;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.hero {
	text-align: center;
	margin-bottom: 56px;
	-webkit-animation: fadeInUp .8s ease-out;
	animation: fadeInUp .8s ease-out
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px)
	}

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

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px)
	}

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

.lobster-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 24px;
	-webkit-animation: float 4s ease-in-out infinite;
	animation: float 4s ease-in-out infinite;
	cursor: pointer;
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	-o-transition: transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease
}

.lobster-icon:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-animation: none;
	animation: none
}

.lobster-icon svg {
	width: 100%;
	height: 100%;
	-webkit-filter: drop-shadow(0 0 20px rgba(255, 77, 77, .4));
	filter: drop-shadow(0 0 20px rgba(255, 77, 77, .4));
	-webkit-transition: -webkit-filter .3s ease;
	transition: -webkit-filter .3s ease;
	-o-transition: filter .3s ease;
	transition: filter .3s ease;
	transition: filter .3s ease, -webkit-filter .3s ease
}

.lobster-icon:hover svg {
	-webkit-filter: drop-shadow(0 0 30px rgba(0, 229, 204, .6));
	filter: drop-shadow(0 0 30px rgba(0, 229, 204, .6))
}

.lobster-icon .eye-glow {
	-webkit-animation: blink 3s ease-in-out infinite;
	animation: blink 3s ease-in-out infinite
}

.lobster-icon .antenna {
	-webkit-animation: wiggle 2s ease-in-out infinite;
	animation: wiggle 2s ease-in-out infinite;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center
}

.lobster-icon .claw-left {
	-webkit-animation: clawSnap 4s ease-in-out infinite;
	animation: clawSnap 4s ease-in-out infinite;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center
}

.lobster-icon .claw-right {
	-webkit-animation: clawSnap 4s ease-in-out infinite .2s;
	animation: clawSnap 4s ease-in-out infinite .2s;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center
}

@-webkit-keyframes float {

	0%,
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	50% {
		-webkit-transform: translateY(-8px);
		transform: translateY(-8px)
	}
}

@keyframes float {

	0%,
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	50% {
		-webkit-transform: translateY(-8px);
		transform: translateY(-8px)
	}
}

@-webkit-keyframes blink {

	0%,
	90%,
	to {
		opacity: 1
	}

	95% {
		opacity: .3
	}
}

@keyframes blink {

	0%,
	90%,
	to {
		opacity: 1
	}

	95% {
		opacity: .3
	}
}

@-webkit-keyframes wiggle {

	0%,
	to {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	25% {
		-webkit-transform: rotate(-3deg);
		transform: rotate(-3deg)
	}

	75% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}
}

@keyframes wiggle {

	0%,
	to {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	25% {
		-webkit-transform: rotate(-3deg);
		transform: rotate(-3deg)
	}

	75% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}
}

@-webkit-keyframes clawSnap {

	0%,
	85%,
	to {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	90% {
		-webkit-transform: rotate(-8deg);
		transform: rotate(-8deg)
	}

	95% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

@keyframes clawSnap {

	0%,
	85%,
	to {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	90% {
		-webkit-transform: rotate(-8deg);
		transform: rotate(-8deg)
	}

	95% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

.title {
	font-family: var(--font-display);
	font-size: clamp(3rem, 10vw, 4.5rem);
	font-weight: 700;
	letter-spacing: -.03em;
	line-height: 1;
	margin-bottom: 12px
}

.title-main {
	background: -o-linear-gradient(315deg, var(--text-primary) 0%, var(--coral-bright) 50%, var(--cyan-bright) 100%);
	background: linear-gradient(135deg, var(--text-primary) 0%, var(--coral-bright) 50%, var(--cyan-bright) 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-animation: gradientShift 6s ease infinite;
	animation: gradientShift 6s ease infinite
}

@-webkit-keyframes gradientShift {

	0%,
	to {
		background-position: 0% 50%
	}

	50% {
		background-position: 100% 50%
	}
}

@keyframes gradientShift {

	0%,
	to {
		background-position: 0% 50%
	}

	50% {
		background-position: 100% 50%
	}
}

.tagline {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--coral-bright);
	letter-spacing: .15em;
	text-transform: uppercase;
	margin-bottom: 20px;
	-webkit-animation: fadeInUp .8s ease-out .15s both;
	animation: fadeInUp .8s ease-out .15s both
}

.tagline.dalek-mode {
	color: var(--cyan-bright);
	-webkit-animation: shake .1s ease-in-out infinite;
	animation: shake .1s ease-in-out infinite;
	text-shadow: 0 0 10px var(--cyan-glow)
}

@-webkit-keyframes shake {

	0%,
	to {
		-webkit-transform: translate(0);
		transform: translate(0)
	}

	25% {
		-webkit-transform: translate(-2px);
		transform: translate(-2px)
	}

	75% {
		-webkit-transform: translate(2px);
		transform: translate(2px)
	}
}

@keyframes shake {

	0%,
	to {
		-webkit-transform: translate(0);
		transform: translate(0)
	}

	25% {
		-webkit-transform: translate(-2px);
		transform: translate(-2px)
	}

	75% {
		-webkit-transform: translate(2px);
		transform: translate(2px)
	}
}

.description {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 780px;
	margin: 0 auto;
	line-height: 1.7;
	-webkit-animation: fadeInUp .8s ease-out .3s both;
	animation: fadeInUp .8s ease-out .3s both
}

.cta-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 16px 1fr;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 56px;
	-webkit-animation: fadeInUp .8s ease-out .45s both;
	animation: fadeInUp .8s ease-out .45s both
}

@media(min-width:640px) {
	.cta-grid {
		-ms-grid-columns: repeat(4, 1fr);
		grid-template-columns: repeat(4, 1fr)
	}
}

.cta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	padding: 24px 16px;
	border-radius: 16px;
	border: 1px solid var(--border-subtle);
	background: #0a0f1a99;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	text-decoration: none;
	color: var(--text-primary);
	-webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	-o-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	transition: all .25s cubic-bezier(.4, 0, .2, 1)
}

.cta:hover {
	-webkit-transform: translateY(-4px);
	-ms-transform: translateY(-4px);
	transform: translateY(-4px);
	border-color: var(--border-accent);
	-webkit-box-shadow: 0 12px 40px #ff4d4d26, inset 0 1px #ffffff0d;
	box-shadow: 0 12px 40px #ff4d4d26, inset 0 1px #ffffff0d
}

.cta-icon {
	width: 28px;
	height: 28px;
	color: var(--coral-bright);
	-webkit-transition: -webkit-transform .25s ease;
	transition: -webkit-transform .25s ease;
	-o-transition: transform .25s ease;
	transition: transform .25s ease;
	transition: transform .25s ease, -webkit-transform .25s ease
}

.cta:hover .cta-icon {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

.cta-discord:hover {
	border-color: #5865f2;
	-webkit-box-shadow: 0 12px 40px #5865f233;
	box-shadow: 0 12px 40px #5865f233
}

.cta-discord:hover .cta-icon {
	color: #5865f2
}

.cta-docs:hover {
	border-color: var(--cyan-bright);
	-webkit-box-shadow: 0 12px 40px #00e5cc26;
	box-shadow: 0 12px 40px #00e5cc26
}

.cta-docs:hover .cta-icon {
	color: var(--cyan-bright)
}

.cta-github:hover {
	border-color: #f0f4ff;
	-webkit-box-shadow: 0 12px 40px #f0f4ff1a;
	box-shadow: 0 12px 40px #f0f4ff1a
}

.cta-github:hover .cta-icon {
	color: #f0f4ff
}

.cta-skills:hover {
	border-color: #fbbf24;
	-webkit-box-shadow: 0 12px 40px #fbbf2426;
	box-shadow: 0 12px 40px #fbbf2426
}

.cta-skills:hover .cta-icon {
	color: #fbbf24
}

.cta-label {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1rem
}

.cta-sub {
	font-size: .8rem;
	color: var(--text-muted)
}

.newsletter {
	margin-bottom: 56px;
	-webkit-animation: fadeInUp .8s ease-out .7s both;
	animation: fadeInUp .8s ease-out .7s both
}

.newsletter-content {
	text-align: center;
	padding: 40px 32px;
	border-radius: 20px;
	border: 1px solid var(--border-subtle);
	background: -o-linear-gradient(315deg, #ff4d4d0d, #0a0f1acc, #00e5cc08);
	background: linear-gradient(135deg, #ff4d4d0d, #0a0f1acc, #00e5cc08);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px)
}

.newsletter-title {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 10px
}

.newsletter-desc {
	font-size: .95rem;
	color: var(--text-secondary);
	margin-bottom: 24px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto
}

.newsletter-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	max-width: 440px;
	margin: 0 auto
}

.newsletter-input {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 14px 18px;
	border-radius: 12px;
	border: 1px solid var(--border-subtle);
	background: #0a0f1acc;
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: .95rem;
	outline: none;
	-webkit-transition: all .25s ease;
	-o-transition: all .25s ease;
	transition: all .25s ease
}

.newsletter-input::-webkit-input-placeholder {
	color: var(--text-muted)
}

.newsletter-input::-moz-placeholder {
	color: var(--text-muted)
}

.newsletter-input:-ms-input-placeholder {
	color: var(--text-muted)
}

.newsletter-input::-ms-input-placeholder {
	color: var(--text-muted)
}

.newsletter-input::placeholder {
	color: var(--text-muted)
}

.newsletter-input:focus {
	border-color: var(--coral-bright);
	-webkit-box-shadow: 0 0 0 3px #ff4d4d26;
	box-shadow: 0 0 0 3px #ff4d4d26
}

.newsletter-btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	padding: 14px 24px;
	border-radius: 12px;
	border: none;
	background: -o-linear-gradient(315deg, var(--coral-bright) 0%, var(--coral-dark) 100%);
	background: linear-gradient(135deg, var(--coral-bright) 0%, var(--coral-dark) 100%);
	color: #fff;
	font-family: var(--font-display);
	font-size: .95rem;
	font-weight: 600;
	cursor: pointer;
	-webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	-o-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	transition: all .25s cubic-bezier(.4, 0, .2, 1);
	-webkit-box-shadow: 0 4px 20px #ff4d4d40;
	box-shadow: 0 4px 20px #ff4d4d40
}

.newsletter-btn:hover {
	-webkit-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	transform: translateY(-2px);
	-webkit-box-shadow: 0 8px 30px #ff4d4d59;
	box-shadow: 0 8px 30px #ff4d4d59
}

.newsletter-btn:active {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0)
}

.newsletter-btn svg {
	width: 18px;
	height: 18px;
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	-o-transition: transform .2s ease;
	transition: transform .2s ease;
	transition: transform .2s ease, -webkit-transform .2s ease
}

.newsletter-btn:hover svg {
	-webkit-transform: translate(3px);
	-ms-transform: translate(3px);
	transform: translate(3px)
}

@media(max-width:480px) {
	.newsletter-content {
		padding: 28px 20px
	}

	.newsletter-form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.newsletter-input {
		width: 100%
	}

	.newsletter-btn {
		width: 100%;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
}

.features {
	margin-bottom: 56px;
	-webkit-animation: fadeInUp .8s ease-out .55s both;
	animation: fadeInUp .8s ease-out .55s both
}

.features-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 16px 1fr;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px
}

@media(min-width:640px) {
	.features-grid {
		-ms-grid-columns: repeat(3, 1fr);
		grid-template-columns: repeat(3, 1fr)
	}
}

.feature-card {
	display: block;
	padding: 20px;
	border-radius: 14px;
	border: 1px solid var(--border-subtle);
	background: #0a0f1a99;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	-webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	-o-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	transition: all .25s cubic-bezier(.4, 0, .2, 1);
	text-decoration: none;
	color: inherit;
	cursor: default;
}

.feature-card:hover {
	-webkit-transform: translateY(-4px);
	-ms-transform: translateY(-4px);
	transform: translateY(-4px);
	border-color: var(--coral-bright);
	-webkit-box-shadow: 0 12px 40px color-mix(in srgb, var(--coral-bright) 20%, transparent);
	box-shadow: 0 12px 40px color-mix(in srgb, var(--coral-bright) 20%, transparent)
}

.feature-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 12px
}

.feature-icon svg {
	width: 28px;
	height: 28px
}

.feature-title {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 6px
}

.feature-desc {
	font-size: .85rem;
	color: var(--text-muted);
	line-height: 1.5
}

.integrations-preview {
	margin-bottom: 56px;
	-webkit-animation: fadeInUp .8s ease-out .6s both;
	animation: fadeInUp .8s ease-out .6s both
}

.integrations-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 16px
}

.integration-pill {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 20px;
	border: 1px solid var(--border-subtle);
	background: #0a0f1a99;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	font-size: .85rem;
	color: var(--text-secondary);
	-webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	-o-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	transition: all .25s cubic-bezier(.4, 0, .2, 1);
	cursor: default
}

.integration-pill svg {
	width: 16px;
	height: 16px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease
}

.integration-pill:hover {
	border-color: var(--coral-bright);
	-webkit-transform: translateY(-4px);
	-ms-transform: translateY(-4px);
	transform: translateY(-4px);
	-webkit-box-shadow: 0 8px 24px color-mix(in srgb, var(--coral-bright) 20%, transparent);
	box-shadow: 0 8px 24px color-mix(in srgb, var(--coral-bright) 20%, transparent)
}

.integrations-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.integrations-link {
	color: var(--coral-bright);
	text-decoration: none;
	font-size: .9rem;
	font-weight: 500;
	-webkit-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease
}

.integrations-link:hover {
	color: var(--cyan-bright)
}

.link-separator {
	color: var(--text-muted);
	font-size: .9rem
}

.press-section {
	margin-bottom: 56px;
	-webkit-animation: fadeInUp .8s ease-out .65s both;
	animation: fadeInUp .8s ease-out .65s both
}

.press-section .section-title {
	margin-bottom: 20px
}

.press-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 20px 1fr;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px
}

@media(max-width:640px) {
	.press-grid {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr
	}
}

.press-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	padding: 24px 28px;
	border-radius: 16px;
	border: 1px solid var(--border-subtle);
	background: #0a0f1ab3;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	text-decoration: none;
	color: var(--text-primary);
	-webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	-o-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	transition: all .25s cubic-bezier(.4, 0, .2, 1);
	text-align: center
}

.press-card:hover {
	-webkit-transform: translateY(-4px);
	-ms-transform: translateY(-4px);
	transform: translateY(-4px);
	border-color: var(--coral-bright);
	-webkit-box-shadow: 0 12px 40px #ff4d4d26;
	box-shadow: 0 12px 40px #ff4d4d26
}

.press-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px
}

.press-icon {
	width: 28px;
	height: 28px;
	color: var(--text-muted)
}

.press-name {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-secondary);
	letter-spacing: .02em
}

.press-quote {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	color: var(--text-primary);
	margin: 0;
	font-style: italic
}

.press-author {
	font-size: .9rem;
	color: var(--coral-bright);
	font-weight: 500
}

.press-featured {
	border-color: #ff4d4d4d;
	background: -o-linear-gradient(315deg, #ff4d4d0d, #0a0f1ab3);
	background: linear-gradient(135deg, #ff4d4d0d, #0a0f1ab3)
}

.quickstart {
	margin-bottom: 56px;
	-webkit-animation: fadeInUp .8s ease-out .6s both;
	animation: fadeInUp .8s ease-out .6s both
}

.section-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px
}

.section-title {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px
}

.section-link {
	font-size: .9rem;
	color: var(--coral-bright);
	text-decoration: none;
	font-weight: 500;
	-webkit-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease
}

.section-link:hover {
	color: var(--cyan-bright)
}

.claw-accent {
	color: var(--coral-bright);
	font-weight: 700
}

.code-block {
	background: var(--bg-elevated);
	border: 1px solid var(--border-subtle);
	border-radius: 12px;
	overflow: visible
}

.code-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: #0000004d;
	border-bottom: 1px solid var(--border-subtle)
}

.code-content {
	padding: 16px 20px;
	font-family: SF Mono, Fira Code, Consolas, monospace;
	font-size: .9rem;
	line-height: 1.6
}

.code-line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	padding: 4px 0
}

.code-line.comment {
	color: var(--text-muted);
	font-style: italic
}

.code-line.cmd {
	color: var(--text-primary)
}

.copy-line-btn {
	opacity: .6;
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: none;
	border-radius: 6px;
	background: #ffffff1a;
	color: var(--text-muted);
	cursor: pointer;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.code-line:hover .copy-line-btn {
	opacity: 1
}

.copy-line-btn:hover {
	background: #fff3;
	color: var(--text-primary)
}

.copy-line-btn.copied {
	opacity: 1;
	background: #00e5cc33;
	color: var(--cyan-bright)
}

.copy-line-btn svg {
	width: 14px;
	height: 14px
}

.code-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--text-muted)
}

.code-dot:nth-child(1) {
	background: #ff5f57
}

.code-dot:nth-child(2) {
	background: #febc2e
}

.code-dot:nth-child(3) {
	background: #28c840
}

.code-title {
	margin-left: auto;
	font-size: .75rem;
	color: var(--text-muted);
	font-family: var(--font-mono)
}

.mode-switch,
.pm-switch,
.hackable-switch,
.os-switch,
.win-shell-switch {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 4px;
	background: #0000004d;
	padding: 3px;
	border-radius: 6px
}

.pm-switch,
.hackable-switch,
.os-switch,
.win-shell-switch {
	margin-left: auto
}

.win-shell-switch {
	margin-left: 8px
}

.mode-btn,
.pm-btn,
.hackable-btn,
.os-btn,
.win-shell-btn {
	font-family: var(--font-mono);
	font-size: .7rem;
	padding: 4px 10px;
	border: none;
	border-radius: 4px;
	background: transparent;
	color: var(--text-muted);
	cursor: pointer;
	-webkit-transition: all .15s ease;
	-o-transition: all .15s ease;
	transition: all .15s ease
}

.mode-btn:hover,
.pm-btn:hover,
.hackable-btn:hover,
.os-btn:hover,
.win-shell-btn:hover {
	color: var(--text-secondary)
}

.pm-btn.active,
.hackable-btn.active,
.os-btn.active,
.win-shell-btn.active {
	background: var(--coral-bright);
	color: var(--bg-deep);
	font-weight: 600
}

.mode-btn.active {
	background: var(--cyan-bright);
	color: var(--bg-deep);
	font-weight: 600
}

.beta-switch {
	margin-left: 8px
}

.switch-placeholder {
	display: none;
	height: 26px;
	margin-left: auto
}

.beta-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 4px;
	font-family: var(--font-mono);
	font-size: .7rem;
	padding: 4px 10px;
	border: 1px solid var(--border-subtle);
	border-radius: 4px;
	background: transparent;
	color: var(--text-muted);
	cursor: pointer;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease
}

.beta-btn:hover {
	border-color: var(--cyan-bright);
	color: var(--cyan-bright)
}

.beta-btn.active {
	background: #00e5cc26;
	border-color: var(--cyan-bright);
	color: var(--cyan-bright)
}

.beta-label {
	font-weight: 700;
	font-size: .8rem
}

.beta-text {
	text-transform: uppercase;
	letter-spacing: .05em
}

.pm-cmd,
.pm-install {
	color: var(--cyan-bright)
}

.code-block pre {
	padding: 20px;
	overflow-x: auto
}

.code-block code {
	font-family: var(--font-mono);
	font-size: .9rem;
	line-height: 1.7;
	color: var(--text-secondary)
}

.code-comment {
	color: var(--text-muted)
}

.code-prompt {
	color: var(--coral-bright);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.quickstart-note {
	margin-top: 16px;
	font-size: .9rem;
	color: var(--text-muted);
	text-align: center
}

.os-indicator {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	margin-left: auto;
	font-family: var(--font-mono);
	font-size: .75rem;
	color: var(--text-muted)
}

.os-detected {
	color: var(--text-secondary)
}

.os-change-btn {
	background: none;
	border: none;
	color: var(--coral-bright);
	font-family: var(--font-mono);
	font-size: .7rem;
	cursor: pointer;
	padding: 2px 6px;
	border-radius: 4px;
	-webkit-transition: all .15s ease;
	-o-transition: all .15s ease;
	transition: all .15s ease
}

.os-change-btn:hover {
	background: #ff4d4d26;
	color: var(--cyan-bright)
}

.macos-app-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	padding: 24px 16px;
	text-align: center
}

.macos-description {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px
}

.macos-tagline {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-primary)
}

.macos-subtitle {
	font-size: .9rem;
	color: var(--text-muted)
}

.macos-download-btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: -o-linear-gradient(315deg, var(--coral-bright) 0%, var(--coral-dark) 100%);
	background: linear-gradient(135deg, var(--coral-bright) 0%, var(--coral-dark) 100%);
	border: none;
	border-radius: 12px;
	color: #fff;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	-o-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	transition: all .25s cubic-bezier(.4, 0, .2, 1);
	-webkit-box-shadow: 0 4px 20px #ff4d4d4d;
	box-shadow: 0 4px 20px #ff4d4d4d
}

.macos-download-btn:hover {
	-webkit-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	transform: translateY(-2px);
	-webkit-box-shadow: 0 8px 30px #ff4d4d66;
	box-shadow: 0 8px 30px #ff4d4d66
}

.macos-download-btn svg {
	width: 20px;
	height: 20px
}

.macos-meta {
	font-size: .8rem;
	color: var(--text-muted)
}

.footer {
	margin-top: auto;
	padding-top: 40px;
	text-align: center;
	font-size: .9rem;
	color: var(--text-muted);
	-webkit-animation: fadeInUp .8s ease-out .75s both;
	animation: fadeInUp .8s ease-out .75s both
}

.footer-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	font-size: .95rem
}

.footer-separator {
	color: var(--text-muted)
}

.footer a {
	color: var(--coral-bright);
	text-decoration: none;
	-webkit-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease
}

.footer a:hover {
	color: var(--cyan-bright)
}

.footer .disclaimer {
	margin-top: 12px;
	font-size: .8rem;
	color: var(--text-muted);
	opacity: .7
}

.latest-post {
	margin-bottom: 40px;
	-webkit-animation: fadeInUp .8s ease-out .5s both;
	animation: fadeInUp .8s ease-out .5s both;
	text-align: center
}

.latest-post-card {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	padding: 10px 20px;
	border-radius: 50px;
	background: #0a0f1acc;
	border: 1px solid var(--border-subtle);
	text-decoration: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.latest-post-card:hover {
	border-color: var(--coral-bright);
	-webkit-box-shadow: 0 4px 20px #ff4d4d33;
	box-shadow: 0 4px 20px #ff4d4d33
}

.latest-post-badge {
	padding: 3px 8px;
	border-radius: 12px;
	background: var(--coral-bright);
	color: #fff;
	font-size: .7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px
}

.latest-post-title {
	font-size: .9rem;
	color: var(--text-primary)
}

.latest-post-link {
	color: var(--text-muted);
	-webkit-transition: color .2s;
	-o-transition: color .2s;
	transition: color .2s
}

.latest-post-card:hover .latest-post-link {
	color: var(--coral-bright)
}

.testimonials {
	margin-bottom: 56px;
	-webkit-animation: fadeInUp .8s ease-out .75s both;
	animation: fadeInUp .8s ease-out .75s both;
	overflow: hidden;
	margin-left: -24px;
	margin-right: -24px;
	padding: 0 24px
}

.testimonials .section-header {
	padding: 0 24px
}

.testimonials-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
	margin-left: -24px;
	margin-right: -24px;
	overflow: hidden;
	mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(5%, black), color-stop(95%, black), to(transparent));
	mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
	-webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(5%, black), color-stop(95%, black), to(transparent));
	-webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent)
}

.testimonials-track:focus-within .testimonials-row {
	-webkit-animation-play-state: paused;
	animation-play-state: paused
}

.testimonials-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding: 8px 0
}

.row-1 {
	-webkit-animation: scroll-left var(--duration, 80s) linear infinite;
	animation: scroll-left var(--duration, 80s) linear infinite
}

.row-2 {
	-webkit-animation: scroll-right var(--duration, 90s) linear infinite;
	animation: scroll-right var(--duration, 90s) linear infinite
}

@-webkit-keyframes scroll-left {
	0% {
		-webkit-transform: translate(0);
		transform: translate(0)
	}

	to {
		-webkit-transform: translate(-50%);
		transform: translate(-50%)
	}
}

@keyframes scroll-left {
	0% {
		-webkit-transform: translate(0);
		transform: translate(0)
	}

	to {
		-webkit-transform: translate(-50%);
		transform: translate(-50%)
	}
}

@-webkit-keyframes scroll-right {
	0% {
		-webkit-transform: translate(-50%);
		transform: translate(-50%)
	}

	to {
		-webkit-transform: translate(0);
		transform: translate(0)
	}
}

@keyframes scroll-right {
	0% {
		-webkit-transform: translate(-50%);
		transform: translate(-50%)
	}

	to {
		-webkit-transform: translate(0);
		transform: translate(0)
	}
}

.testimonial-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	min-width: 320px;
	max-width: 400px;
	border-radius: 12px;
	border: 1px solid var(--border-subtle);
	background: #0a0f1ab3;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	text-decoration: none;
	color: var(--text-primary);
	-webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	-o-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	transition: all .25s cubic-bezier(.4, 0, .2, 1);
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.testimonial-card:hover {
	border-color: var(--coral-bright);
	-webkit-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	transform: translateY(-2px);
	-webkit-box-shadow: 0 8px 24px #ff4d4d26;
	box-shadow: 0 8px 24px #ff4d4d26
}

.testimonials-row:hover {
	-webkit-animation-play-state: paused;
	animation-play-state: paused
}

.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border: 2px solid var(--border-subtle);
	background: var(--bg-elevated)
}

.testimonial-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 6px;
	min-width: 0
}

.testimonial-quote {
	font-size: .9rem;
	line-height: 1.5;
	color: var(--text-secondary);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.testimonial-author {
	font-size: .8rem;
	font-weight: 600;
	color: var(--coral-bright)
}

@media(max-width:480px) {
	.container {
		padding: 40px 16px 32px
	}

	.lobster-icon {
		width: 80px;
		height: 80px
	}

	.cta {
		padding: 20px 12px
	}

	.cta-label {
		font-size: .9rem
	}

	.testimonials {
		margin-left: -16px;
		margin-right: -16px;
		padding: 0 16px
	}

	.testimonials .section-title {
		padding-left: 16px
	}

	.testimonials-track {
		margin-left: -16px;
		margin-right: -16px
	}

	.testimonial-card {
		min-width: 280px;
		max-width: 320px;
		padding: 12px
	}

	.testimonial-avatar {
		width: 36px;
		height: 36px
	}

	.testimonial-quote {
		font-size: .85rem
	}

	.code-header {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 8px
	}

	.code-dot {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0
	}

	.os-indicator,
	.os-switch,
	.win-shell-switch,
	.pm-switch,
	.hackable-switch,
	.beta-switch,
	.switch-placeholder {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		margin-left: auto
	}

	.win-shell-switch {
		margin-left: 4px
	}

	.mode-switch {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		width: 100%;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 4px
	}

	.mode-btn {
		padding: 6px 8px;
		font-size: .65rem
	}

	.os-btn,
	.pm-btn,
	.win-shell-btn {
		padding: 4px 8px;
		font-size: .65rem
	}

	.code-content {
		padding: 12px 14px;
		font-size: .65rem
	}

	.code-line {
		gap: 6px
	}

	.macos-download-btn {
		padding: 12px 20px;
		font-size: .9rem
	}
}

.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
}

:focus-visible {
	outline: 3px solid var(--cyan-bright);
	outline-offset: 4px;
	border-radius: 4px
}

@media(prefers-reduced-motion:reduce) {

	:before,
	:after {
		-webkit-animation-duration: .01ms !important;
		animation-duration: .01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		-webkit-transition-duration: .01ms !important;
		-o-transition-duration: .01ms !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important
	}
}

.captcha-wrap {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: opacity .25s ease, max-height .25s ease;
	-o-transition: opacity .25s ease, max-height .25s ease;
	transition: opacity .25s ease, max-height .25s ease;
}

.captcha-wrap.show {
	opacity: 1;
	max-height: 260px;
}

.captcha-msg {
	font-size: 18px;
	color: #fff;
	line-height: 1.3;
	margin-top: .5rem;
}

.captcha-wrap.hidden {
	display: block;
}

.newsletter-msg {
	margin-top: 12px;
	font-size: 14px;

	opacity: 0;
	-webkit-transform: translateY(6px);
	-ms-transform: translateY(6px);
	transform: translateY(6px);
	max-height: 0;
	overflow: hidden;

	-webkit-transition: opacity .25s ease, max-height .25s ease, -webkit-transform .25s ease;

	transition: opacity .25s ease, max-height .25s ease, -webkit-transform .25s ease;

	-o-transition: opacity .25s ease, transform .25s ease, max-height .25s ease;

	transition: opacity .25s ease, transform .25s ease, max-height .25s ease;

	transition: opacity .25s ease, transform .25s ease, max-height .25s ease, -webkit-transform .25s ease;
	will-change: opacity, transform, max-height;
}

.newsletter-msg.show {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	max-height: 80px;
}

.newsletter-msg.is-success {
	color: #28c840;
}

.newsletter-msg.is-error {
	color: #ff5f57;
}

.code-pane {
	opacity: 0;
	-webkit-transform: translateY(6px);
	-ms-transform: translateY(6px);
	transform: translateY(6px);
	max-height: 0;
	overflow: hidden;
	padding-top: 0;
	padding-bottom: 0;

	-webkit-transition: opacity .25s ease, max-height .25s ease, padding .25s ease, -webkit-transform .25s ease;

	transition: opacity .25s ease, max-height .25s ease, padding .25s ease, -webkit-transform .25s ease;

	-o-transition: opacity .25s ease, transform .25s ease, max-height .25s ease, padding .25s ease;

	transition: opacity .25s ease, transform .25s ease, max-height .25s ease, padding .25s ease;

	transition: opacity .25s ease, transform .25s ease, max-height .25s ease, padding .25s ease, -webkit-transform .25s ease;
	will-change: opacity, transform, max-height;
}

.code-pane.is-active {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	max-height: 600px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.code-pane {
	padding-left: 20px;
	padding-right: 20px;
}

.demo-head {
	text-align: center;
	margin-bottom: 18px;
}

.demo-title {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 6px;
}

.demo-subtitle {
	margin: 0 auto;
	max-width: 360px;
	font-size: .9rem;
	line-height: 1.5;
	color: var(--text-muted);
}

.demo-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
}

.field {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 6px;
}

.field-label {
	display: block;
	font-size: .75rem;
	color: var(--text-muted);
}

.field-input {
	width: 100%;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid var(--border-subtle);
	background: #0a0f1acc;
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: .95rem;
	outline: none;
	-webkit-transition: all .25s ease;
	-o-transition: all .25s ease;
	transition: all .25s ease;
}

.field-input::-webkit-input-placeholder {
	color: color-mix(in srgb, var(--text-muted) 90%, transparent);
}

.field-input::-moz-placeholder {
	color: color-mix(in srgb, var(--text-muted) 90%, transparent);
}

.field-input:-ms-input-placeholder {
	color: color-mix(in srgb, var(--text-muted) 90%, transparent);
}

.field-input::-ms-input-placeholder {
	color: color-mix(in srgb, var(--text-muted) 90%, transparent);
}

.field-input::placeholder {
	color: color-mix(in srgb, var(--text-muted) 90%, transparent);
}

.field-input:focus {
	border-color: var(--cyan-bright);
	-webkit-box-shadow: 0 0 0 3px color-mix(in srgb, var(--cyan-bright) 18%, transparent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--cyan-bright) 18%, transparent);
}

.field-input.is-invalid {
	border-color: var(--coral-bright);
	-webkit-box-shadow: 0 0 0 3px #ff4d4d26;
	box-shadow: 0 0 0 3px #ff4d4d26;
}

.demo-consent {
	padding-top: 4px;
}

.checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: var(--text-secondary);
	font-size: .9rem;
	line-height: 1.4;
}

.checkbox-input {
	margin-top: 2px;
	width: 16px;
	height: 16px;
	border-radius: 5px;
	border: 1px solid var(--border-subtle);
	background: #0a0f1acc;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	display: -ms-grid;
	display: grid;
	place-items: center;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.checkbox-input:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 3px color-mix(in srgb, var(--cyan-bright) 18%, transparent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--cyan-bright) 18%, transparent);
	border-color: var(--cyan-bright);
}

.checkbox-input:checked {
	border-color: color-mix(in srgb, var(--cyan-bright) 70%, var(--border-subtle));
	background: #00e5cc26;
}

.checkbox-input:checked::after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 3px;
	background: var(--cyan-bright);
}

.demo-btn {
	width: 100%;
	margin-top: 6px;
	padding: 14px 18px;
	border-radius: 12px;
	border: 1px solid color-mix(in srgb, var(--border-subtle) 65%, transparent);
	background: -o-linear-gradient(315deg, #ffffffeb 0%, #ffffffcc 100%);
	background: linear-gradient(135deg, #ffffffeb 0%, #ffffffcc 100%);
	color: #0a0f1a;
	font-family: var(--font-display);
	font-size: .95rem;
	font-weight: 600;
	cursor: pointer;
	-webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	-o-transition: all .25s cubic-bezier(.4, 0, .2, 1);
	transition: all .25s cubic-bezier(.4, 0, .2, 1);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 8px;
}

.demo-btn:hover {
	-webkit-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	transform: translateY(-2px);
	-webkit-box-shadow: 0 12px 40px #ffffff14;
	box-shadow: 0 12px 40px #ffffff14;
	border-color: color-mix(in srgb, #ffffff 30%, var(--border-subtle));
}

.demo-btn:active {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.demo-btn:disabled {
	opacity: .55;
	cursor: not-allowed;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.demo-hint {
	padding-top: 4px;
	text-align: center;
	font-size: .8rem;
	color: var(--text-muted);
	min-height: 1em;
}

@media (max-width: 480px) {
	.demo-card {
		padding: 20px 14px;
	}

	.demo-subtitle {
		max-width: 320px;
	}
}

/* Utility Classes */
.hidden {
	display: none !important;
}

.captcha-wrap {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.captcha-msg {
	color: var(--coral-bright);
	font-size: 0.9rem;
}