/* ========================================
   REALITASMARA HOMEPAGE
   Dark Premium Design System
   ======================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #06060b;
    --bg-secondary: #0d0d14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #f0f0f5;
    --text-secondary: rgba(240, 240, 245, 0.55);
    --text-muted: rgba(240, 240, 245, 0.35);
    --accent: #e63946;
    --accent-glow: rgba(230, 57, 70, 0.3);
    --accent-soft: rgba(230, 57, 70, 0.1);
    --accent-hover: #ff4757;
    --radius-md: 12px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === ANIMATIONS === */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 30px var(--accent-glow);
    transform: translateY(-2px);
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.logo-wrapper {
    margin-bottom: 40px;
    animation: slideUp 0.6s ease;
}

.logo-img {
    height: auto;
    width: 320px;
    max-width: 80%;
    object-fit: contain;
    filter: brightness(1.2);
}

.hero-title {
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: slideUp 0.8s ease backwards;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a5a5b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(16px, 4vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 400;
    animation: slideUp 1s ease backwards;
}

.hero-cta-wrapper {
    animation: slideUp 1.2s ease backwards;
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === THE ARSENAL (TOOLS GRID) === */
.arsenal-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: var(--transition);
}

.active-tool:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.active-tool:hover::before {
    background: var(--accent);
}

.active-tool.new-tool:hover::before {
    background: #00d2d3;
}

.tool-status {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 1px;
}

.tool-status.live {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.tool-status.new {
    background: rgba(0, 210, 211, 0.1);
    color: #00d2d3;
    border: 1px solid rgba(0, 210, 211, 0.2);
}

.tool-status.coming-soon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.tool-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tool-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
}

.tool-action {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.active-tool.new-tool .tool-action {
    color: #00d2d3;
}

.active-tool:hover .tool-action {
    gap: 8px;
}

.locked-tool {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.01);
}

.locked-tool .tool-action {
    color: var(--text-muted);
}

/* === THE LIBRARY (PRODUCTS) === */
.library-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.products-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .products-container {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(230, 57, 70, 0.1);
    transform: translateY(-4px);
}

.product-visual {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screening-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 2px solid #e63946;
}

.deepening-bg {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    border-bottom: 2px solid #00d2d3;
}

.escape-bg {
    background: linear-gradient(135deg, #2a0a0a 0%, #1a0000 100%);
    border-bottom: 2px solid #ff4757;
}

.product-title-overlay {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 0 20px;
}

.product-content {
    padding: 32px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-discount-info {
    border: 1px dashed rgba(230, 57, 70, 0.3);
    background: rgba(230, 57, 70, 0.02);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.discount-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1.5px;
}

.discount-instruction {
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.5;
}

/* === THE PHILOSOPHY (MANIFESTO) === */
.manifesto-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.manifesto-box {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(230, 57, 70, 0.03);
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: var(--radius-md);
    padding: 48px;
    position: relative;
    text-align: center;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 48px;
    font-size: 80px;
    font-weight: 900;
    color: var(--accent-glow);
    line-height: 1;
    font-family: serif;
}

.manifesto-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.manifesto-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.manifesto-text strong {
    color: var(--text-primary);
}

.manifesto-author {
    margin-top: 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

/* === SOCIAL PROOF SECTION === */
.social-section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-primary);
    text-align: center;
}

.social-card {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
}

.social-bio {
    margin-bottom: 32px;
}

.bio-lock {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bio-lock::before {
    content: "🔒";
    font-size: 16px;
}

.social-bio p:not(.bio-lock) {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.ig-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.ig-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
}

.tiktok-btn {
    background: #000000;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tiktok-btn:hover {
    background: #111111;
    border-color: #00f2fe;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 242, 254, 0.15);
}

/* === FOOTER === */
.footer {
    padding: 60px 0 32px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* === FREE BADGE === */
.free-badge-container {
    margin-top: 24px;
}

.free-tag {
    font-size: 10px;
    font-weight: 800;
    color: #2ed573;
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 1px;
}

/* === TESTIMONIAL MARQUEE === */
.testimonial-section {
    padding: 100px 0;
    overflow: hidden;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.marquee-wrapper {
    width: 100%;
    position: relative;
    padding: 40px 0;
}

.marquee-content {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee 60s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    width: 320px;
    flex-shrink: 0;
    transition: var(--transition);
}

.testi-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.testi-user {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.testi-user span {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 11px;
    margin-left: 4px;
}

.testi-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-style: italic;
}

/* === FAQ SECTION === */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-q {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.faq-a {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}