:root {
	--bg: #080808;
	--section: #101010;
	--card: #181818;
	--red: #e10706;
	--red2: #ff3b30;
	--white: #fff;
	--gray: #cfcfcf;
	--muted: #8d8d8d;
	--border: rgba(255, 255, 255, .1)
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: var(--bg);
	color: var(--white);
	line-height: 1.65
}

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

.container {
	width: min(1180px, 92%);
	margin: auto
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(8, 8, 8, .84);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border)
}

.nav-wrap {
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.logo {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: .4px
}

.logo span {
	color: var(--red)
}

.main-nav {
	display: flex;
	gap: 24px;
	align-items: center
}

.main-nav a {
	font-size: 14px;
	color: #eee
}

.main-nav a:hover,
.main-nav a.active {
	color: var(--red2)
}

.menu-toggle {
	display: none;
	background: none;
	border: 0;
	color: #fff;
	font-size: 28px
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	border-radius: 9px;
	background: linear-gradient(135deg, #ff3838, var(--red));
	color: #fff;
	font-weight: 800;
	box-shadow: 0 12px 35px rgba(225, 7, 6, .30);
	transition: .25s;
	border: 0
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 45px rgba(225, 7, 6, .45)
}

.btn-small {
	padding: 9px 18px;
	font-size: 13px
}

.btn-outline {
	background: transparent;
	border: 1px solid var(--red);
	box-shadow: none
}

.hero,
.page-hero {
	background: radial-gradient(circle at 76% 28%, rgba(225, 7, 6, .28), transparent 30%), linear-gradient(45deg, rgba(255, 255, 255, .035) 25%, transparent 25%) 0 0/42px 42px, var(--bg)
}

.hero {
	min-height: 680px;
	display: flex;
	align-items: center
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 60px;
	align-items: center
}

.eyebrow {
	color: var(--red2);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px
}

.hero h1,
.page-hero h1 {
	font-size: 64px;
	line-height: 1.04;
	margin: 0 0 18px
}

.lead,
.page-hero p {
	font-size: 20px;
	color: var(--gray);
	max-width: 760px
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-top: 34px;
	flex-wrap: wrap
}

/* .hero-card {
	height: 360px;
	border: 1px solid var(--border);
	background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025));
	border-radius: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 80px rgba(225, 7, 6, .30);
	text-align: center
} */

.hero-card {
    height: 360px;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025));
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 80px rgb(255 151 151 / 30%);
    text-align: center;
}

.currency {
	font-size: 86px;
	font-weight: 900;
	text-shadow: 12px 12px 0 rgba(225, 7, 6, .65)
}

.hero-card p {
	color: var(--gray);
	margin-bottom: 0
}

.hero-card strong {
	font-size: 48px;
	color: var(--red2)
}

.promo {
	margin-top: -55px;
	position: relative;
	z-index: 2
}

.promo-box {
    background: linear-gradient(135deg, #5e0909, #b22929);
    padding: 28px 34px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 18px 45px rgba(225, 7, 6, .35);
}

.promo-box h2 {
	margin: 0;
	font-size: 28px
}

.promo-box span {
	font-weight: 900
}

.section {
	padding: 95px 0
}

.dark-section {
	background: var(--section)
}

.center {
	text-align: center
}

.section h2 {
	font-size: 40px;
	text-transform: uppercase;
	line-height: 1.2;
	margin: 0 0 18px
}

.section h2:after {
	content: "";
	display: block;
	width: 70px;
	height: 4px;
	background: var(--red);
	margin: 18px auto 0;
	border-radius: 4px
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center
}

.image-placeholder,
.glass-panel {
	min-height: 290px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	box-shadow: 0 20px 55px rgba(0, 0, 0, .35)
}

.glass-panel {
	display: block;
	padding: 34px
}

.tick-list {
	list-style: none;
	padding: 0;
	margin: 20px 0
}

.tick-list li {
	margin: 12px 0;
	color: var(--gray)
}

.tick-list li:before {
	content: "✓";
	color: var(--red2);
	font-weight: 900;
	margin-right: 10px
}

.feature-grid,
.card-grid {
	display: grid;
	gap: 24px;
	margin-top: 44px
}

.five {
	grid-template-columns: repeat(5, 1fr)
}

.four {
	grid-template-columns: repeat(4, 1fr)
}

.card-grid {
	grid-template-columns: repeat(3, 1fr)
}

.feature,
.account-card,
.mini-card,
.platform-card {
	background: linear-gradient(145deg, #1b1b1b, #101010);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 32px 24px;
	transition: .25s;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .28)
}

.feature:hover,
.account-card:hover,
.mini-card:hover,
.platform-card:hover {
	transform: translateY(-8px);
	border-color: var(--red);
	box-shadow: 0 22px 55px rgba(225, 7, 6, .30)
}

.feature {
	font-size: 32px
}

.feature h3 {
	font-size: 14px;
	margin: 12px 0 0
}

.account-card h3,
.mini-card h3,
.platform-card h3 {
	font-size: 24px;
	text-transform: uppercase
}

.account-card p,
.mini-card p,
.platform-card p {
	color: var(--gray)
}

.featured {
	border-color: rgba(225, 7, 6, .65);
	box-shadow: 0 18px 50px rgba(225, 7, 6, .18)
}

.icon {
	width: 54px;
	height: 54px;
	margin: -58px auto 12px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--red);
	box-shadow: 0 0 0 12px #101010
}

.page-hero {
	padding: 20px 0 20px
}

.contact-form {
	display: grid;
	gap: 16px
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	background: #111;
	border: 1px solid var(--border);
	border-radius: 10px;
	color: #fff;
	padding: 15px
}

.contact-form textarea {
	min-height: 150px
}

.info-list p {
	margin: 10px 0;
	color: var(--gray)
}

.footer {
	background: #0b0b0b;
	border-top: 1px solid var(--border);
	padding: 60px 0 24px
}

.footer-top {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 34px;
	align-items: start
}

.footer h3 {
	font-size: 28px;
	margin: 0 0 10px
}

.footer h3 span {
	color: var(--red)
}

.footer-contact {
	display: grid;
	gap: 10px;
	color: var(--gray)
}

.footer-text {
	margin-top: 28px;
	color: #bcbcbc;
	font-size: 14px
}

.risk {
	margin-top: 20px;
	padding: 18px;
	border-left: 4px solid var(--red);
	background: rgba(255, 255, 255, .04);
	color: #bcbcbc;
	font-size: 14px
}

.footer-links {
	border-top: 1px solid var(--border);
	margin-top: 30px;
	padding-top: 18px;
	display: flex;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	color: var(--muted);
	font-size: 14px
}

.footer-links a {
	color: var(--gray);
	margin-right: 14px
}

.footer-links a:hover {
	color: var(--red2)
}

@media(max-width:900px) {
	.menu-toggle {
		display: block
	}

	.main-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 76px;
		background: #090909;
		display: none;
		flex-direction: column;
		padding: 22px;
		border-bottom: 1px solid var(--border)
	}

	.main-nav.show {
		display: flex
	}

	.hero-grid,
	.split,
	.card-grid,
	.footer-top {
		grid-template-columns: 1fr
	}

	.five,
	.four {
		grid-template-columns: repeat(2, 1fr)
	}

	.hero h1,
	.page-hero h1 {
		font-size: 42px
	}

	.hero {
		min-height: auto;
		padding: 90px 0
	}

	.promo {
		margin-top: 0
	}

	.promo-box {
		display: block
	}

	.section {
		padding: 65px 0
	}
}

@media(max-width:520px) {

	.five,
	.four {
		grid-template-columns: 1fr
	}

	.section h2 {
		font-size: 30px
	}

	.currency {
		font-size: 56px
	}

	.hero-card {
		height: 260px
	}

	.footer-links {
		display: block
	}

	.footer-links a {
		display: block;
		margin: 7px 0
	}
}

a.logo img {
	width: 150px;
}

img.account-setup {
    width: 70%;
}
.hero-grid{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    min-height:500px;
}

.hero-content{
    flex:1;
}

.hero-content h1{
    font-size:56px;
    line-height:1.1;
    color:#fff;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    color:#d8d8d8;
    max-width:560px;
    margin-bottom:35px;
}

.hero-image{
    flex:1;
    text-align:right;
}

.hero-image img{
    width:100%;
    max-width:520px;
    animation:float 5s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}

@media(max-width:991px){

.hero-grid{
    flex-direction:column;
    text-align:center;
    gap:40px;
}

.hero-image{
    text-align:center;
}

.hero-content p{
    margin:auto auto 30px;
}

.hero-content h1{
    font-size:42px;
}

}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#e10706;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    color:#fff;
    font-size:42px;
    margin:15px 0;
}

.section-title p{
    color:#bdbdbd;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.contact-card{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#e10706;
    box-shadow:0 15px 40px rgba(225,7,6,.30);
}

.contact-icon{
    width:75px;
    height:75px;
    background:#e10706;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin:0 auto 25px;
}

.contact-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:22px;
}

.contact-card p{
    color:#cfcfcf;
    margin-bottom:25px;
    line-height:1.7;
}

.contact-card a{
    display:inline-block;
    color:#fff;
    background:#e10706;
    padding:12px 28px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.contact-card a:hover{
    background:#fff;
    color:#e10706;
}