/* style.css */

/* --- Core Variables and Fonts from your website --- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-color: #e0921e;
    --accent-hover: #f0a52a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, #e0921e 0%, #f0a52a 100%);
    --shadow-light: 0 4px 20px rgba(224, 146, 30, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.3);
    --shadow-heavy: 0 16px 60px rgba(0, 0, 0, 0.5);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- General and Layout (Adapted from your website) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
}

.main-container {
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    width: 100%;
    max-width: 40rem;
    text-align: center;
}

/* --- Typography (Adapted from your website) --- */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* --- Buttons (Adapted from your website) --- */
.btn {
    display: inline-flex;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* --- Forms (Refined for your forms) --- */
.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

.form-field {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem; /* Increased padding to give content more space */
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    resize: none; /* Prevents manual resizing */
    font-family: inherit;
}

.form-field:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: var(--shadow-light);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: left;
    margin-bottom: 0.5rem;
}

/* --- Progress Bar --- */
.progress-container {
    width: 100%;
    background-color: #333333;
    border-radius: 9999px;
    height: 0.625rem;
    margin-bottom: 1.5rem;
}

.progress-bar {
    background: var(--gradient-primary);
    height: 100%;
    border-radius: 9999px;
    transition: width 0.5s ease-in-out;
}

/* --- Utilities --- */
.mt-8 {
    margin-top: 2rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.flex {
    display: flex;
}
.justify-end {
    justify-content: flex-end;
}
.justify-between {
    justify-content: space-between;
}
.space-y-6 > * + * {
    margin-top: 1.5rem;
}

/* In style.css */
.honeypot {
    display: none;
}
