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

:root {
	--font-size: 18px;
	font-size: var(--font-size);
}

body, html, main {
	font-family: 'Archivo', -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
	height: 100%;
	overflow-x: hidden;
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
	line-height: 1.6;
	overflow-x: hidden;
}

span, p, li, td, th, h1, h2, h3, h4, h5, h6, strong, b, i, u {
	filter: blur(0.125px);
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.2s linear;
}

.noselect, img, svg, br {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
	pointer-events: none;
}

/* width */
::-webkit-scrollbar {
	width: 16px;
	padding-left: 25px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.25);
	border-radius: 16px;
	border: 4px solid transparent;
	background-clip: content-box;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: rgba(0,0,0,0.3);
	background-clip: content-box;
}

::-webkit-scrollbar-track {
	background-color: white;
}

::-moz-selection, ::selection {
	color: white;
	background: #1338b0;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.gradient-text {
	background: linear-gradient(172deg, #ffa375, #ec5c20, #eca123);
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	text-shadow: rgba(255, 255, 255, 0.25) 0px 0px 5px;
}

.btn-primary {
	font-size: 1.25rem;
	border: 0;
	background: linear-gradient(0deg, #d54600, #ffa071);
	color: white;
	padding: 1rem 2.5rem;
	border-radius: 12px;
	box-shadow: inset 0px 0px 5px 1px rgba(255, 255, 255, 0.5), 0px 10px 15px -5px rgba(0, 0, 0, 0.15);
	font-family: 'Archivo';
	cursor: pointer;
	transition: all 0.2s;
}

.btn-primary:hover {
	filter: saturate(100%) brightness(1.025);
}

.nav-link {
	font-size: 1.25rem;
	font-weight: 500;
	opacity: 0.8;
	text-decoration: none;
	transition: opacity 0.2s;
}

.nav-link:hover {
	opacity: 1;
}

.url-input {
	width: 100%;
	padding: 1rem 1.25rem;
	font-size: 1.125rem;
	background: rgba(0, 0, 0, 0.0);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	font-family: 'JetBrains Mono', monospace;
	margin-bottom: 1.5rem;
	box-shadow: inset 0px 0px 5px 1px rgb(0 0 0 / 5%), 0px 10px 15px -5px rgba(0, 0, 0, 0.05);
}

.url-input::placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.response-box {
	background: 0 0/8px 8px transparent radial-gradient(rgba(0,0,0,.025) 18.75%,transparent 0);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	padding: 1.5rem;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.875rem;
	color: black;
	min-height: 300px;
	overflow-x: auto;
	width: 100%;
    flex-shrink: 0;
	box-shadow: inset 0px 0px 10px 5px rgba(255, 255, 255, 0.5);
}

/* Features */
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 6rem 0;
}

.feature-card {
	padding: 2rem;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.02));
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.2s, border-color 0.2s;
	box-shadow: inset 0px 0px 5px 1px rgb(0 0 0 / 2.5%), 0px 10px 15px -5px rgba(0, 0, 0, 0.025);
}

.feature-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 163, 117, 0.3);
}

.feature-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	border: 2px dotted rgb(0 0 0 / 100%);
    border-radius: 100px;
}

/* Methods and Code */
.methods-code {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 2rem;
	margin: 6rem 0;
	min-height: 500px;
}

.methods-tabs {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.method-tab {
	padding: 1.25rem 2rem;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.02));
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
	overflow: hidden;
	box-shadow: inset 0px 0px 5px 1px rgb(0 0 0 / 2.5%), 0px 10px 15px -5px rgba(0, 0, 0, 0.025);
}

.method-tab:hover {
    border-color: rgba(255, 163, 117, 0.3);
}

.method-tab.active {
	background: linear-gradient(90deg, rgba(255, 163, 117, 0.1), transparent);
	border-color: rgba(255, 163, 117, 0.3);
}

.method-tab.active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(172deg, #ffa375, #ec5c20);
	border-radius: 3px;
}

.code-block {
    background: 0 0 / 8px 8px #1e1e1e radial-gradient(rgba(255, 255, 255, .025) 18.75%, transparent 0);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    overflow-x: auto;
    position: relative;
    box-shadow: inset 0px 0px 10px 1px rgb(255 255 255 / 12.5%), 0px 10px 15px -5px rgb(0 0 0 / 25%);
}

.code-block pre {
	margin: 0;
	color: #e0e0e0;
}

.copy-btn {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-family: 'Archivo';
    border-radius: 8px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: inset 0px 0px 10px 10px rgb(255 255 255 / 25%), 0px 10px 15px -5px rgba(255, 255, 255, 0.125);
    display: flex;
    align-items: center;
}

.copy-btn:hover {
	background: rgba(255, 255, 255, 0.125);
}

/* Pricing */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.pricing-card {
	padding: 2rem;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.02));
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 12px;
	transition: transform 0.2s, border-color 0.2s;
	position: relative;
	box-shadow: inset 0px 0px 5px 1px rgb(0 0 0 / 2.5%), 0px 10px 15px -5px rgba(0, 0, 0, 0.025);
}

.pricing-card button {
	font-size: 1rem;
}

.pricing-card button.old {
    width: 100%;
    border: 0;
    background: linear-gradient(0deg, #353535, #1c1c1c);
    color: white;
    font-family: 'Archivo';
    padding: 1rem;
    border-radius: 10px;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 0px 5px 1px inset, rgba(0, 0, 0, 0.125) 0px 10px 15px -5px;
    letter-spacing: 0.025rem;
    cursor: pointer;
}

.pricing-card.popular {
	border-color: rgba(255, 163, 117, 0.3);
	transform: scale(1.05);
}

.pricing-card.popular::before {
	content: 'POPULAR';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(172deg, #ffa375, #ec5c20);
	padding: 0.25rem 1rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	color: white;
}

.pricing-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 163, 117, 0.2);
}

.pricing-card.popular:hover {
	transform: scale(1.05) translateY(-5px);
}

.price {
	font-size: 3rem;
	font-weight: 600;
	margin: 1rem 0;
	background: linear-gradient(172deg, #ffa375, #ec5c20, #eca123);
    background-clip: text;
    color: transparent;
	text-shadow: rgba(255, 255, 255, 0.25) 0px 0px 5px;
}

.price-subtitle {
	font-size: 0.875rem;
	opacity: 0.6;
	margin-bottom: 1.5rem;
}

/* Pricing Table */
.pricing-table {
	overflow-x: auto;
	margin: 3rem 0;
}

.pricing-table table {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
}

.pricing-table th {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-weight: 500;
	opacity: 0.8;
}

.pricing-table td {
	padding: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* FAQ */
.faq {
	margin: 6rem 0;
}

.faq-item {
	padding: 2rem;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.02));
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 12px;
	margin-bottom: 1rem;
	cursor: pointer;
	transition: border-color 0.2s;
	box-shadow: inset 0px 0px 5px 1px rgb(0 0 0 / 2.5%), 0px 10px 15px -5px rgb(0 0 0 / 2.5%);
}

.faq-item:hover {
	border-color: rgba(255, 163, 117, 0.2);
}

.faq-question {
	font-size: 1.125rem;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-answer {
	margin-top: 1rem;
	opacity: 0.8;
	display: none;
}

.faq-item.active .faq-answer {
	display: block;
}

/* CTA */
.cta {
	text-align: center;
	padding: 6rem 2rem;
	background: linear-gradient(345deg, transparent, rgba(255, 163, 117, 0.2), transparent);
	border-radius: 30px;
	margin: 6rem 0;
	box-shadow: inset 0px 0px 5px 1px rgba(255, 255, 255, 0.75), 0px 15px 20px -10px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
	padding: 4rem 0 2rem;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	margin-top: 6rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h4 {
	margin-bottom: 1rem;
	opacity: 0.9;
}

.footer-section a {
	display: block;
	text-decoration: none;
	opacity: 0.6;
	margin-bottom: 0.5rem;
	transition: opacity 0.2s;
}

.footer-section a:hover {
	opacity: 1;
}

@media (max-width: 768px) {
	.methods-code {
		grid-template-columns: 1fr;
	}

	.pricing-card.popular {
		transform: none;
	}
}