/* --- 1. Load the Font Locally --- */
@font-face {
    font-family: 'Vazirmatn';
    src: url('Vazirmatn-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #ff5500; /* Sharp Orange */
}

body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    font-family: 'Vazirmatn', sans-serif; /* Uses the local font */
    color: var(--text-color);
}

/* --- Background Ambient Animation --- */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    animation: float 10s ease-in-out infinite alternate;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: -50px;
    right: -50px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #e0e0e0;
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* --- Main Layout --- */
.content-wrapper {
    text-align: center;
    z-index: 10;
    padding: 20px;
}

.headline {
    font-size: 4rem; /* Made bigger for impact */
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 40px 0;
    letter-spacing: -1px;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

/* --- Word-by-Word Reveal Animation --- */
.word {
    opacity: 0;
    display: inline-block;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.word:nth-child(1) { animation-delay: 0.1s; }
.word:nth-child(2) { animation-delay: 0.2s; }
.word:nth-child(3) { animation-delay: 0.3s; }
/* Child 4 is the <br> tag */
.word:nth-child(5) { animation-delay: 0.4s; }
.word:nth-child(6) { animation-delay: 0.5s; }

/* --- High-End Button Design --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background-color: var(--text-color);
    color: var(--bg-color);
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    animation: fadeUp 1s ease-out 0.7s forwards;
    direction: ltr; 
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 85, 0, 0.4);
}

.btn-icon {
    font-size: 1.4rem;
    transition: transform 0.3s;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .headline { font-size: 2.5rem; }
    .orb-1 { width: 200px; height: 200px; }
}
