:root {
    /* Hitman Palette: Clean Red, White, Black */
    --bg-main: #121212;
    --bg-card: #1E1E1E;
    --bg-accent: #2C2C2C;
    
    --accent: #FF002B; /* Agent 47 Red */
    --accent-hover: #CC0022;
    --accent-dark: #8B0018;
    
    --text-main: #FFFFFF;
    --text-muted: #B0B0B0;
    
    --success: #FF002B; /* Using Red for "Success/Active" in Hitman theme fits better stylistically, or keep green? Let's use Red for branding */
    
    --radius: 4px; /* Sharp edges for Hitman style */
    --font-main: 'Manrope', sans-serif;
    --font-display: 'Oswald', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        linear-gradient(rgba(18,18,18,0.95), rgba(18,18,18,0.95)),
        url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
h1, h2, h3, h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; color: #fff; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navbar --- */
.nav {
    padding: 20px 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(18,18,18,0.9);
    backdrop-filter: blur(10px);
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-family: var(--font-display);
    font-weight: 700;
}

.logo__icon {
    background: var(--accent);
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); /* Aggressive shape */
}

.nav__links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav__links a:not(.btn-nav) {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav__links a:hover { color: var(--accent); }

.btn-nav {
    background: var(--accent);
    color: white;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}
.btn-nav:hover { background: var(--accent-hover); }

/* --- Hero --- */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero__bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 0, 43, 0.15), transparent 60%);
    z-index: -1;
}

.hero__content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 6px 14px;
    border-left: 3px solid var(--accent);
    margin-bottom: 25px;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1;
}

.accent-text { 
    color: var(--accent); 
    font-style: italic;
}

.hero__desc {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.6;
}

/* Promo Widget */
.promo-card {
    background: var(--bg-card);
    padding: 20px;
    margin-bottom: 40px;
    max-width: 400px;
    border-left: 4px solid var(--accent);
    position: relative;
}
.promo-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 20px; height: 20px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
}

.promo-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.promo-status { color: var(--accent); font-weight: 700; }

.code-box {
    background: #000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: 1px solid #333;
    transition: 0.3s;
}
.code-box:hover { border-color: var(--accent); }

#promoText { 
    font-family: var(--font-display); 
    font-weight: 700; 
    font-size: 24px; 
    letter-spacing: 3px;
    color: #fff;
}

.hero__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-display);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn--text { background: transparent; color: var(--text-muted); padding: 0; clip-path: none; }
.btn--text:hover { color: var(--accent); }

/* Phone Visual */
.hero__visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border: 1px solid #333;
    position: relative;
    box-shadow: 0 0 100px rgba(255, 0, 43, 0.2);
}

.phone-screen { width: 100%; height: 100%; background: #121212; }
.app-store-ui { padding: 30px 20px; color: #fff; display: flex; flex-direction: column; height: 100%; }
.app-header { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; }
.app-icon { width: 70px; height: 70px; border-radius: 0; border: 1px solid #333; }
.app-meta { display: flex; flex-direction: column; gap: 6px; }
.app-name { font-size: 18px; font-family: var(--font-display); font-weight: 700; line-height: 1; }
.app-dev { font-size: 12px; color: var(--accent); text-transform: uppercase; }
.app-btn-fake { background: var(--accent); font-size: 14px; font-family: var(--font-display); padding: 4px 20px; width: fit-content; clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); }
.app-preview-img { 
    flex: 1; 
    margin-bottom: 10px; 
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
}
.app-preview-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.1); }

/* Barcode effect on float badge */
.float-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: #fff;
    color: #000;
    padding: 10px 20px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 12px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(-2deg);
}

/* --- Shared Account Info Block --- */
.shared-info { background: var(--bg-accent); padding: 80px 0; margin: 40px 0; border-top: 2px solid var(--accent); border-bottom: 2px solid var(--accent); }
.shared-box { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.tag { background: var(--accent); color: #fff; padding: 2px 8px; font-weight: 700; font-size: 12px; text-transform: uppercase; display: inline-block; margin-bottom: 15px; font-family: var(--font-display); }
.highlight { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent); }
.shared-desc { color: var(--text-muted); margin-bottom: 40px; font-size: 16px; max-width: 600px; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    background: #333; /* Grid lines effect */
    border: 1px solid #333;
}

.step-card {
    background: var(--bg-card);
    padding: 30px;
}
.step-num { 
    font-family: var(--font-display); font-size: 48px; color: rgba(255,255,255,0.1); margin-bottom: 0px; line-height: 1;
}
.step-card h4 { margin-bottom: 8px; font-size: 20px; color: var(--accent); }
.step-card p { font-size: 14px; color: #ccc; }

.pros-list .pro-item { margin-bottom: 12px; font-size: 15px; display: flex; gap: 12px; align-items: center; }
.pros-list i { color: var(--accent); }
.shared-visual { display: none; }

/* --- Game & Video --- */
.game-container { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
    margin: 80px auto; 
    max-width: 1100px;
}

.game-text { padding-right: 20px; }
.game-text p { color: #ccc; margin-bottom: 20px; font-size: 16px; }
.game-features li { margin-bottom: 10px; display: flex; gap: 10px; font-size: 14px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }
.game-features i { color: var(--accent); }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border: 1px solid #333;
    background: #000;
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* --- Pricing --- */
.section-head { text-align: center; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: 42px; margin-bottom: 10px; }
.highlight-code { background: #fff; color: #000; padding: 0 5px; }

.pricing-cards { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
.price-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background: var(--bg-card);
    padding: 40px;
    position: relative;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}
.price-card:hover { border-color: var(--accent); }
.price-card.popular { background: linear-gradient(to bottom, #220000, #1a0000); border: 1px solid var(--accent); }

.card-label {
    position: absolute;
    top: 0;
    right: 0;
    background: #333;
    font-size: 12px;
    padding: 5px 15px;
    font-family: var(--font-display);
    text-transform: uppercase;
    color: #fff;
}
.card-label.best { background: var(--accent); }

.price-card h3 { font-size: 24px; margin-bottom: 20px; margin-top: 10px; }
.price { font-size: 56px; font-family: var(--font-display); color: var(--accent); line-height: 1; margin-bottom: 15px; }
.desc { font-size: 14px; color: #999; margin-bottom: 30px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }

.benefits { margin-bottom: 30px; flex-grow: 1; }
.benefits li { margin-bottom: 12px; display: flex; gap: 10px; font-size: 14px; color: #fff; }
.benefits i { color: var(--accent); }

.btn--outline { border: 2px solid #fff; color: #fff; }
.btn--outline:hover { background: #fff; color: #000; }
.full-width { width: 100%; text-align: center; margin-top: auto; }

/* --- Trust & Footer --- */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.trust-item { background: #000; padding: 30px; border: 1px solid #333; text-align: center; }
.trust-item i { font-size: 32px; color: var(--accent); margin-bottom: 15px; }

.footer { padding: 50px 0; border-top: 1px solid #333; margin-top: 80px; background: #000; }
.footer__content { display: flex; justify-content: space-between; align-items: center; }
.brand-col p { font-size: 13px; color: #444; margin-top: 5px; text-transform: uppercase; }

/* --- Mobile Adaptation --- */
@media (max-width: 992px) {
    .hero__content { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero__text { max-width: 600px; margin: 0 auto; }
    .hero__text h1 { font-size: 42px; }
    .hero__actions { justify-content: center; }
    .promo-card { margin: 0 auto 30px; }
    .nav__links { display: none; }
    
    .game-container { grid-template-columns: 1fr; gap: 30px; margin: 40px auto; padding: 0 20px; }
    .game-text { padding-right: 0; }
    .video-wrapper { order: -1; }
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .section { padding: 60px 0; }
    .hero { padding-top: 120px; }
    
    .phone-mockup { width: 260px; height: 520px; margin: 0 auto; }
    .float-badge { display: none; }
    
    .steps-grid { grid-template-columns: 1fr; gap: 10px; background: transparent; border: none; }
    .step-card { margin-bottom: 10px; border: 1px solid #333; }
    
    .pricing-cards { flex-direction: column; align-items: center; }
    .price-card { width: 100%; max-width: 100%; padding: 25px; }
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--accent);
    color: #fff;
    padding: 15px 30px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    opacity: 0;
    z-index: 100;
    box-shadow: 0 10px 50px rgba(255,0,43,0.4);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
