:root {
	--primary-bg: #13111C;
	--secondary-bg: #1E1B2E;
	--accent: rgb(61, 106, 255);
	--text-clr: rgba(255, 255, 255, 0.7);
	--gradient: linear-gradient(90deg, #5f94ff, #0900ab);
	--section-spacing: 12rem;
}

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

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

body {
	font-family: -apple-system, BlinkMacSystemFont, "Shippori Mincho", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Noto Serif", "Noto Sans JP", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Kaku Gothic ProN", "Meiryo", "MS PGothic", "MS PMincho", "Tahoma", Geneva, sans-serif;
	background-color: var(--primary-bg);
	color: var(--text-clr);
	line-height: 1.6;
}

section {
	margin: var(--section-spacing) 0;
}

h2 {
	font-size: 3rem;
	margin-bottom: 3rem;
	text-align: center;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
}

h2::after {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	height: 4px;
	background: var(--gradient);
	border-radius: 2px;
}
.cta__button {
	background: var(--gradient);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 12px;
	transition: all 0.3s ease;
	font-weight: 600;
	position: relative;
	overflow: hidden;
}

.cta__button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: 0.5s;
}

.cta__button:hover::before {
	left: 100%;
}

.cta__button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	padding: 12rem 2rem 6rem;
	background: var(--primary-bg);
	position: relative;
	overflow: hidden;
	margin-top: 0
}

.hero::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 30%, rgba(95, 148, 255, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	background: var(--gradient);
	filter: blur(100px);
	opacity: 0.1;
	top: 20%;
	right: 10%;
	border-radius: 50%;
	animation: float 8s ease-in-out infinite;
}

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

.hero__content {
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero__content h1 {
	font-size: 4.5rem;
	line-height: 1.2;
	margin-bottom: 2rem;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
}

.hero__content p {
	font-size: 1.5rem;
	margin-bottom: 3rem;
	color: rgba(255, 255, 255, 0.9);
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	max-width: 1400px;
	margin: 4rem auto 0;
	padding: 0 2rem;
}

.stat__card {
	background: var(--secondary-bg);
	padding: 3rem;
	border-radius: 20px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
	transform: translateY(100%);
	transition: transform 0.6s ease;
}

.stat__card:hover::before {
	transform: translateY(-100%);
}

.stat__card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.2);
}

.stat__card h3 {
	font-size: 3.5rem;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 1rem;
}

.stat__card p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
}

.benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	padding: 0 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.benefit__card {
	background: var(--secondary-bg);
	padding: 3rem;
	border-radius: 20px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit__card:hover {
	transform: translateY(-10px);
	border-color: rgba(255, 255, 255, 0.2);
}

.benefit__card h3 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.commission {
	padding: 0 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.commission__table {
	background: var(--secondary-bg);
	border-radius: 20px;
	overflow: hidden;
	margin-top: 3rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.table__header, .table__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 2rem;
}

.table__header {
	background: var(--gradient);
	font-weight: bold;
	font-size: 1.2rem;
}

.table__row {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: background-color 0.3s ease;
}

.table__row:hover {
	background-color: rgba(255, 255, 255, 0.05);
}

.table__row:last-child {
	border-bottom: none;
}

.faq {
	padding: 0 2rem;
	max-width: 1400px;
	margin: 0 auto;
	margin-bottom: 5em;
}

.faq__search {
	margin-bottom: 4rem;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.faq__search input {
	width: 100%;
	padding: 1.5rem 2rem;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: var(--secondary-bg);
	color: white;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.faq__search input:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgba(61, 106, 255, 0.1);
}

.faq__grid {
	display: grid;
	gap: 2rem;
	margin-top: 4rem;
}

.faq__question {
	background: var(--secondary-bg);
	padding: 2rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.faq__question:hover {
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateX(10px);
}

.faq__question h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: white;
}

@media (max-width: 1200px) {
	.stats__grid,
	.benefits__grid {
			grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hero_content h1 {
			font-size: 3rem;
	}
	
	.stats__grid,
	.benefits__grid {
			grid-template-columns: 1fr;
	}
	
	section {
			margin: calc(var(--section-spacing) / 2) 0;
	}
}

[data-aos] {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos="fade-right"] {
	transform: translateX(-30px);
}

[data-aos="fade-left"] {
	transform: translateX(30px);
}

[data-aos].aos-animate {
	opacity: 1;
	transform: translateY(0) translateX(0);
}