:root {
	--paper: #F9FAFA;
	--ink: #170B29;
	--ink-60: rgba(23, 11, 41, .62);
	--ink-40: rgba(23, 11, 41, .40);
	--ink-12: rgba(23, 11, 41, .12);
	--violet: #7C42ED;
	--violet-deep: #5A24C4;
	--violet-lift: #A47BFF;
	--lavender: #E0D3F6;
	--white: #FFFFFF;
	--display: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
	--gutter: clamp(1.25rem, 4vw, 4.5rem);
	--radius: 18px;
}

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

html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a { color: inherit; }

.skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: var(--white);
	padding: .75rem 1.25rem;
	z-index: 99;
	border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

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

.shell {
	position: relative;
	z-index: 1;
	min-height: 100svh;
	display: grid;
	grid-template-rows: auto 1fr auto;
	padding: 0 var(--gutter);
	max-width: 1400px;
	margin: 0 auto;
}

.masthead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: .7rem;
	text-decoration: none;
	font-family: var(--display);
	font-weight: 800;
	font-size: 1.18rem;
	letter-spacing: -.02em;
	font-variation-settings: "wdth" 108;
}

.brand__mark {
	width: 22px;
	height: 22px;
	background: linear-gradient(140deg, var(--violet-lift), var(--violet-deep));
	border-radius: 5px;
	transform: rotate(45deg);
	flex: none;
}

.brand__tld { color: var(--violet); }

.masthead__aside {
	margin: 0;
	font-family: var(--mono);
	font-size: .7rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ink-40);
}

.main--hero { display: flex; align-items: center; position: relative; }

.hero {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .82fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
	padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero__art {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	transform: translateX(-50%);
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

.hero__diamond {
	position: absolute;
	top: 50%;
	right: -6%;
	width: min(46vw, 640px);
	aspect-ratio: 1;
	transform: translateY(-50%) rotate(45deg);
	background: linear-gradient(150deg, var(--violet-lift) 0%, var(--violet) 42%, var(--violet-deep) 100%);
	border-radius: 12%;
	opacity: .96;
}

.hero__glow {
	position: absolute;
	top: 42%;
	right: -10%;
	width: min(60vw, 780px);
	aspect-ratio: 1;
	transform: translateY(-50%);
	background: radial-gradient(circle, rgba(164, 123, 255, .40) 0%, rgba(164, 123, 255, 0) 68%);
}

.hero__grid {
	position: absolute;
	top: 50%;
	right: -6%;
	width: min(46vw, 640px);
	aspect-ratio: 1;
	transform: translateY(-50%) rotate(45deg);
	border-radius: 12%;
	background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
	background-size: 44px 44px;
	mix-blend-mode: overlay;
}

.hero__copy { position: relative; z-index: 2; min-width: 0; }
.hero__card { position: relative; z-index: 2; justify-self: end; min-width: 0; width: 100%; max-width: 420px; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	margin: 0 0 1.4rem;
	font-family: var(--mono);
	font-size: .72rem;
	font-weight: 500;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--violet-deep);
}

.eyebrow__tick {
	width: 26px;
	height: 2px;
	background: var(--violet);
	flex: none;
}

.display {
	margin: 0 0 1.35rem;
	font-family: var(--display);
	font-weight: 800;
	font-variation-settings: "wdth" 112;
	font-size: clamp(2rem, 5.6vw, 4.6rem);
	line-height: .98;
	letter-spacing: -.035em;
	text-wrap: balance;
}

.lede {
	margin: 0 0 2.2rem;
	max-width: 46ch;
	font-size: clamp(1rem, 1.15vw, 1.1rem);
	color: var(--ink-60);
}

.notify { margin: 0; }
.notify__label { position: absolute; left: -9999px; }

.notify__row {
	display: flex;
	gap: .5rem;
	max-width: 30rem;
	background: var(--white);
	border: 1px solid var(--ink-12);
	border-radius: 14px;
	padding: .4rem;
	box-shadow: 0 1px 2px rgba(23, 11, 41, .04);
}

.notify__input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: .7rem .85rem;
	font: inherit;
	font-size: .95rem;
	color: var(--ink);
}
.notify__input::placeholder { color: var(--ink-40); }
.notify__input:focus { outline: none; }
.notify__row:focus-within { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(124, 66, 237, .14); }

.notify__btn {
	flex: none;
	border: 0;
	border-radius: 10px;
	padding: .72rem 1.15rem;
	background: var(--ink);
	color: var(--white);
	font-family: var(--body);
	font-weight: 600;
	font-size: .92rem;
	cursor: pointer;
	transition: background .18s ease, transform .18s ease;
}
.notify__btn:hover { background: var(--violet); }
.notify__btn:active { transform: translateY(1px); }

.notify__note {
	margin: .85rem 0 0;
	font-size: .82rem;
	color: var(--ink-40);
}

.licence {
	position: relative;
	background: var(--white);
	border: 1px solid rgba(255, 255, 255, .7);
	border-radius: var(--radius);
	padding: 1.6rem 1.6rem 1.35rem;
	box-shadow: 0 28px 60px -22px rgba(35, 12, 78, .45), 0 2px 6px rgba(35, 12, 78, .10);
	overflow: hidden;
	max-width: 100%;
}

.licence::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, var(--violet-lift), var(--violet), var(--violet-deep));
}

.licence__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.licence__label {
	font-family: var(--mono);
	font-size: .68rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--ink-40);
}

.licence__status {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .3rem .6rem .3rem .5rem;
	border-radius: 100px;
	background: rgba(124, 66, 237, .09);
	color: var(--violet-deep);
	font-family: var(--mono);
	font-size: .68rem;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	white-space: nowrap;
}

.licence__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--violet);
	flex: none;
	animation: licence-pulse 1.1s ease-in-out infinite;
}

.licence__status.is-settled { background: rgba(29, 160, 96, .11); color: #167A48; }
.licence__status.is-settled .licence__dot { background: #1DA060; animation: none; }

@keyframes licence-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: .35; transform: scale(.78); }
}

.licence__key {
	margin: 0 0 1.5rem;
	font-family: var(--mono);
	font-weight: 600;
	font-size: clamp(1.15rem, 2.3vw, 1.6rem);
	letter-spacing: .02em;
	color: var(--ink);
	word-break: break-all;
}

.licence__rows {
	margin: 0;
	border-top: 1px dashed var(--ink-12);
	padding-top: 1.1rem;
	display: grid;
	gap: .55rem;
}

.licence__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
}

.licence__dt {
	margin: 0;
	font-family: var(--mono);
	font-size: .7rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ink-40);
}

.licence__dd {
	margin: 0;
	font-size: .9rem;
	font-weight: 500;
	text-align: right;
}

.colophon {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .75rem 1.5rem;
	padding: 1.5rem 0 2rem;
	border-top: 1px solid var(--ink-12);
	font-size: .84rem;
	color: var(--ink-40);
}

.colophon__contact {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.colophon__contact a {
	text-decoration: none;
	color: var(--ink-60);
	transition: color .18s ease;
}
.colophon__contact a:hover { color: var(--violet); }

.colophon__legal { margin: 0; }

.main--doc { padding: 2rem 0 4rem; }
.doc { max-width: 42rem; }
.doc__title { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.03em; line-height: 1.05; margin: 0 0 1rem; }
.doc__body { color: var(--ink-60); }

.is-loaded .hero__copy > *,
.is-loaded .hero__card { animation: licence-rise .7s cubic-bezier(.2, .7, .3, 1) backwards; }
.is-loaded .hero__copy > *:nth-child(1) { animation-delay: .04s; }
.is-loaded .hero__copy > *:nth-child(2) { animation-delay: .10s; }
.is-loaded .hero__copy > *:nth-child(3) { animation-delay: .16s; }
.is-loaded .hero__copy > *:nth-child(4) { animation-delay: .22s; }
.is-loaded .hero__copy > *:nth-child(5) { animation-delay: .26s; }
.is-loaded .hero__card { animation-delay: .18s; }

@keyframes licence-rise {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
	.hero {
		grid-template-columns: minmax(0, 1fr);
		gap: 2.5rem;
		padding-bottom: 2rem;
	}
	.hero__card { justify-self: stretch; max-width: 100%; }
	.hero__diamond, .hero__grid { width: min(86vw, 480px); right: -34%; top: 74%; }
	.hero__glow { width: min(110vw, 600px); right: -30%; top: 70%; }
	.masthead__aside { display: none; }
}

@media (max-width: 620px) {
	.display { font-size: clamp(1.95rem, 8.4vw, 3rem); letter-spacing: -.03em; }
	.display br { display: none; }
	.licence__key { font-size: clamp(1rem, 5.4vw, 1.35rem); }
	.notify__row { flex-wrap: wrap; }
	.notify__btn { width: 100%; }
	.colophon { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
}
