:root {
    --primary: #2b7a45;
    --primary-light: #3f9e5c;
    --primary-dark: #1b502d;
    --accent: #e5993e; 
    --accent-hover: #ffad4a;
    --bg-dark: #101211; 
    --bg-card: #161917;
    --bg-card-alt: #1a1e1b;
    --text-main: #f0f4f2;
    --text-muted: #9faaa4;
    --border-color: rgba(255, 255, 255, 0.08);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--accent);
    color: #1a1103;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 153, 62, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* === HEADER === */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(16, 18, 17, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: white;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

nav ul li a:hover, nav ul li a.nav-link-waitlist {
    color: white;
}

/* === HERO SECTION === */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/hero-landscape-CDXfXnzu.jpg');
    background-size: cover;
    background-position: center bottom;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16,18,17,0.95) 0%, rgba(16,18,17,0.7) 40%, rgba(16,18,17,0.2) 100%);
    z-index: -1;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-logo-container {
    flex-shrink: 0;
}

.hero-main-img {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.hero-text-container {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-muted);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.2rem);
    margin-bottom: 1.2rem;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.quick-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.q-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.trust-line {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* === GENERAL SECTIONS === */
.section {
    padding: 7rem 0;
}

.section-head {
    max-width: 650px;
    margin-bottom: 3.5rem;
}

.section-head h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}

.section-head p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* === ABOUT (ARRELAT) === */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.split-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.split-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.split-points {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mini-point {
    display: flex;
    align-items: center;
    background: var(--bg-card-alt);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.mp-icon {
    font-size: 1.8rem;
    margin-right: 1rem;
}

/* === FEATURES GRID 4 CARDS === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* === COMPONENTS GRID === */
.components-bg {
    background: var(--bg-card-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.component-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.comp-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary-light);
    line-height: 1;
}

.component-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.component-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.components-note {
    font-size: 0.85rem;
    color: #666;
    text-align: right;
}

/* === MECHANICS TIMELINE (HORIZONTAL) === */
.mechanics-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.mech-step {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 2rem;
    position: relative;
}

.step-num {
    background: var(--bg-card-alt);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* === GALLERY SHOWCASE === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

/* === STATUS SECTION === */
.status-section {
    padding: 4rem 0;
}

.status-box {
    background: linear-gradient(135deg, rgba(43, 122, 69, 0.1), transparent);
    border: 1px solid rgba(43, 122, 69, 0.3);
    border-radius: 16px;
    padding: 4rem;
}

.status-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.status-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 700px;
}

.status-points {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.status-points li {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #fff;
    font-size: 0.95rem;
}

.status-points li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 0.8rem;
}

/* === CTA FINAL === */
.cta-final {
    background: var(--bg-card);
    text-align: center;
    padding: 6rem 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
}

.cta-final h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.input-email {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
    color: white;
    font-size: 1rem;
    font-family: var(--font-body);
}

.input-email:focus {
    outline: none;
    border-color: var(--primary-light);
}

.trust-micro {
    font-size: 0.85rem !important;
    color: #666 !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

/* === FOOTER === */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-card-alt);
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .mechanics-timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero-layout { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .hero-main-img { width: 220px; }
    .split-layout { grid-template-columns: 1fr; padding: 2.5rem; }
    .components-grid { grid-template-columns: 1fr; }
    nav.main-nav { display: none; }
}

@media (max-width: 600px) {
    .hero { padding-top: 7rem; }
    .hero h1 { font-size: 2.5rem; }
    .mechanics-timeline { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-form { flex-direction: column; }
    .status-box { padding: 2.5rem; }
    .status-points { flex-direction: column; gap: 1rem; }
}
