@font-face {
	font-family: "SF Pro Display";
	src: url("../fonts/SF-Pro-Display-Light.otf") format("opentype");
	font-weight: 300;
	font-style: normal
}

@font-face {
	font-family: "SF Pro Display";
	src: url("../fonts/SF-Pro-Display-Regular.otf") format("opentype");
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: "SF Pro Display";
	src: url("../fonts/SF-Pro-Display-Medium.otf") format("opentype");
	font-weight: 500;
	font-style: normal
}

@font-face {
	font-family: "SF Pro Display";
	src: url("../fonts/SF-Pro-Display-Semibold.otf") format("opentype");
	font-weight: 600;
	font-style: normal
}

@font-face {
	font-family: "SF Pro Display";
	src: url("../fonts/SF-Pro-Display-Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal
}

*,
*::before,
*::after {
	box-sizing: border-box
}

* {
	margin: 0;
	padding: 0
}

html {
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth
}

body {
	min-height: 100vh;
	line-height: 1.5;
	text-rendering: optimizeSpeed;
	font-family: "SF Pro Display", sans-serif;
	background-color: #00212D;
	color: #fff;
	display: flex;
	flex-direction: column
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none
}

button {
	cursor: pointer
}

a {
	text-decoration: none;
	color: inherit
}

ul,
ol {
	list-style: none
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	line-height: 1.2
}

p {
	line-height: 1.6
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
	overflow-wrap: break-word
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important
	}
}

._container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px
}

@media (max-width:520px) {
	._container {
		padding: 0 20px
	}
}

footer {
	margin-top: auto
}

header {
	padding: 40px 0;
	background-color: #000D12
}

.header_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap
}

.header_logo {
	font-size: 36px;
	font-weight: 700;
	font-family: "Unbounded", sans-serif;
	line-height: 1.1
}

.header_logo span {
	color: #10D3DD
}

main {
	background-color: #00212D
}

.auth {
	display: grid;
	justify-items: center;
	align-content: start;
	padding: 40px 0
}

.auth__title,
.proxy_title {
	text-align: center;
	font-weight: 600;
	letter-spacing: .06em;
	font-size: 36px;
	margin-bottom: 20px;
	font-family: "Unbounded", sans-serif;
	line-height: 1.1
}

.auth__subtitle,
.proxy_subtitle {
	text-align: center;
	margin-bottom: 40px;
	color: #10D3DD;
	font-size: 18px;
	letter-spacing: 1px;
	font-weight: 300;
	line-height: 1.4
}

.auth__card {
	width: min(560px, 100%);
	border-radius: 16px;
	padding: 30px;
	background-color: #002E3E
}

.auth__field+.auth__field {
	margin-top: 20px
}

.auth_content {
	width: min(560px, 100%)
}

.auth__label {
	display: block;
	margin: 0 0 12px;
	font-weight: 600;
	font-size: 18px;
	color: #eaf7ff
}

.auth__input-wrap {
	position: relative
}

.auth__icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none
}

.auth__icon svg {
	width: 18px;
	height: 18px
}

.auth__input {
	width: 100%;
	height: 56px;
	padding: 0 14px 0 44px;
	border-radius: 10px;
	background: transparent;
	border: 1px solid #10D3DD;
	color: #10D3DD;
	outline: none;
	font-size: 18px;
	letter-spacing: 1px;
	font-weight: 300;
	transition: border-color .2s ease, box-shadow .2s ease, transform .08s ease
}

.auth__input::placeholder {
	color: #10D3DD
}

.auth__input:focus {
	border-color: #10D3DD;
	box-shadow: 0 0 0 4px rgba(63, 214, 231, 0.16)
}

.auth__btn,
.proxy_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	width: 100%;
	height: 48px;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	background: #31d7e8;
	color: #002E3E;
	font-weight: 600;
	font-size: 18px;
	text-decoration: none;
	letter-spacing: .02em;
	transition: transform .08s ease, filter .2s ease, box-shadow .2s ease
}

.auth__btn:hover,
.proxy_btn:hover {
	filter: brightness(1.04)
}

.auth__btn:active,
.proxy_btn:active {
	transform: translateY(1px)
}

.auth__error {
	display: none;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	color: #ff3b3b;
	font-size: 14px;
	font-weight: 500
}

.auth__error img {
	width: 18px;
	height: 18px
}

.proxy {}

.proxy_container {
	background-color: #000D12;
	border-radius: 40px;
	padding: 40px;
	max-width: 1100px;
}

.proxy_content {
	width: min(560px, 100%);
	margin: 0 auto;
}

.proxy_question {
	margin-top: 40px;
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 1.4
}

.proxy_help_link {
	border: none;
	background: transparent;
	color: #10D3DD;
	font: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	text-decoration: underline;
	cursor: pointer;
	padding: 0
}

.proxy_help_modal {
	position: fixed;
	inset: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 13, 18, 0.82);
	backdrop-filter: blur(10px)
}

.proxy_help_modal[hidden] {
	display: none
}

.proxy_help_modal__dialog {
	position: relative;
	width: min(760px, 100%);
	max-height: min(88vh, 920px);
	overflow: hidden;
	border: 1px solid rgba(16, 211, 221, 0.32);
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(49, 215, 232, 0.14), transparent 28%),
		linear-gradient(180deg, rgba(0, 46, 62, 0.98) 0%, rgba(0, 24, 33, 0.98) 100%);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4)
}

.proxy_help_modal__eyebrow {
	padding: 28px 32px 0;
	color: rgba(16, 211, 221, 0.88);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase
}

.proxy_help_modal__title {
	margin: 12px 0 0;
	padding: 0 32px;
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 700;
	line-height: 1.05;
	font-family: "Unbounded", sans-serif
}

.proxy_help_modal__body {
	max-height: calc(88vh - 220px);
	overflow-y: auto;
	padding: 24px 32px 8px;
	color: rgba(234, 247, 255, 0.92);
	line-height: 1.7
}

.proxy_help_modal__body h3 {
	margin: 26px 0 12px;
	color: #10D3DD;
	font-size: 20px;
	font-weight: 700
}

.proxy_help_modal__body p,
.proxy_help_modal__body li {
	font-size: 17px
}

.proxy_help_modal__body ol,
.proxy_help_modal__body ul {
	margin: 0;
	padding-left: 22px
}

.proxy_help_modal__body li+li {
	margin-top: 10px
}

.proxy_help_modal__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 32px 32px;
	border-top: 1px solid rgba(16, 211, 221, 0.16);
	background: linear-gradient(180deg, rgba(0, 13, 18, 0) 0%, rgba(0, 13, 18, 0.28) 100%)
}

.proxy_help_modal__cta {
	margin-top: 0;
	flex: 1 1 auto
}

.proxy_help_modal__dismiss {
	height: 48px;
	padding: 0 20px;
	border: 1px solid rgba(16, 211, 221, 0.38);
	border-radius: 12px;
	background: transparent;
	color: #10D3DD;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease
}

.proxy_help_modal__dismiss:hover {
	border-color: rgba(16, 211, 221, 0.78);
	background: rgba(16, 211, 221, 0.08)
}

.proxy_help_modal__close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(16, 211, 221, 0.28);
	border-radius: 50%;
	background: rgba(0, 13, 18, 0.46);
	cursor: pointer
}

.proxy_help_modal__close span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 16px;
	height: 2px;
	background: #10D3DD
}

.proxy_help_modal__close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg)
}

.proxy_help_modal__close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg)
}

body.modal-open {
	overflow: hidden
}

footer {
	padding: 40px 0;
	color: #10D3DD;
	letter-spacing: 1px;
	font-weight: 400;
	background-color: #00212D
}

.footer_content {
	width: min(560px, 100%);
	margin: 0 auto;
	text-align: center
}

.footer_soc {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 20px
}

.footer_link {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(16, 211, 221, 0.35);
	padding-bottom: 2px;
	transition: filter .2s ease, border-color .2s ease
}

.footer_link:hover {
	filter: brightness(1.08);
	border-color: rgba(16, 211, 221, 0.8)
}

.footer_line {
	width: 100%;
	height: 1px;
	background: rgba(0, 168, 177, 0.2);
	margin-bottom: 20px
}

.footer_policy {
	text-align: center
}

@media (max-width:768px) {

	header,
	.auth,
	.proxy,
	footer {
		padding: 28px 0
	}

	.header_logo {
		font-size: 28px
	}

	.auth__title,
	.proxy_title {
		font-size: 28px;
		margin-bottom: 14px
	}

	.auth__subtitle,
	.proxy_subtitle {
		font-size: 16px;
		margin-bottom: 28px;
		letter-spacing: .5px
	}

	.auth__card {
		padding: 22px 18px
	}

	.auth__input {
		height: 52px;
		font-size: 16px
	}

	.auth__btn,
	.proxy_btn {
		height: 46px;
		font-size: 16px
	}
}

@media (max-width:520px) {
	.auth__card {
		padding: 20px 16px 18px;
		border-radius: 16px
	}

	.header_logo {
		font-size: 24px
	}

	.auth__title,
	.proxy_title {
		font-size: 24px
	}

	.proxy_question {
		font-size: 16px;
		margin-top: 28px
	}

	.proxy_container {
		padding: 40px 20px;
	}

	.proxy_help_modal {
		padding: 16px
	}

	.proxy_help_modal__dialog {
		border-radius: 22px
	}

	.proxy_help_modal__eyebrow,
	.proxy_help_modal__title,
	.proxy_help_modal__body,
	.proxy_help_modal__actions {
		padding-left: 20px;
		padding-right: 20px
	}

	.proxy_help_modal__body {
		max-height: calc(88vh - 210px);
		padding-top: 18px
	}

	.proxy_help_modal__body p,
	.proxy_help_modal__body li {
		font-size: 15px
	}

	.proxy_help_modal__actions {
		flex-direction: column;
		align-items: stretch;
		padding-top: 20px;
		padding-bottom: 20px
	}

	.proxy_help_modal__dismiss {
		width: 100%
	}
}

.proxy_btn,
.auth__btn {
	transition: all 0.2s ease;
}

.auth__copy:hover,
.proxy_btn:hover,
.auth__btn:hover {
	background-color: #00f3ff;
	transition: all 0.2s ease;
}

.auth__btn {
	opacity: 1;
}
