body {
    background: #131316;
    font-family: system-ui, sans-serif;
    color: white;
    text-align: center;
    margin: 0 auto;

}

html {
    scroll-behavior: smooth;
}

.hero {
    position: relative;
    padding: 72px 24px;
    overflow: hidden;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/fire.gif") no-repeat center center / cover;
    filter: blur(10px);
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            #131316 0%,
            rgba(19, 19, 22, 0.65) 25%,
            rgba(19, 19, 22, 0.65) 75%,
            #131316 100%),
        radial-gradient(ellipse at center,
            rgba(19, 19, 22, 0) 40%,
            rgba(19, 19, 22, 0.85) 100%);
    z-index: -1;
}

.slogan {
    font-size: 44px;
    max-width: 460px;
    margin: 0 auto;
}

.sub-slogan {
    font-size: 24px;
    color: #a8a8b0;
    text-align: center;
    max-width: 460px;
    margin: 0 auto;

}

.brand-logo {
    font-weight: bold;
    font-size: 20px;
    color: #8b74f5;
}

.nav{
    background-color: #1a191b;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    gap: 20px;
    padding : 12px; 
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: #a8a8b0;
    text-decoration: none;
    transition: color 0.3s ease;

}

.nav-links a:hover {
    color: #8b74f5;
}

.highlight {
    color:#8b74f5;
    font-style: italic;
}

.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.primary,
.ghost {
    background-color: #8b74f5;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.primary {
    color: #17131f;
}

.ghost {
    border: 2px solid #2e2e35;
    background-color: transparent;
}

.ghost:hover,
.primary:hover {
    transform: scale(1.05);
}

.pill {
    display: inline-block;
    color: white;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 14px;
    margin-top: 20px;
    border: 2px solid #2e2e35;
}

.pill-indicator {
    background-color: #71f55f;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 10px;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.section {
    padding: 56px 32px;
    border-bottom: 1px solid #26262c;
}

.section-title {
    font-size: 26px;
    font-weight: 500;
}

.section-sub {
    font-size: 14px;
    color: #a8a8b0;
    margin-top: 6px;
}

.showcase-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 760px;
    margin: 24px auto 0;
}

.showcase-item {
    border: 1px solid #26262c;
    flex: 1;
    min-width: 300px;
    aspect-ratio: 4 / 3;
    background: #1a191b;
    border-radius: 20px;
    transition: transform 0.2s ease,border-color 0.2s ease;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.showcase-item:hover {
    transform: translateY(-6px);
    border: 1px solid #8b74f5;
}

.vouches-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 760px;
    margin: 24px auto 0;
}

.vouches-item {
    border: 1px solid #26262c;
    flex: 1;
    min-width: 300px;
    background: #1a191b;
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    transition: transform 0.2s ease,border-color 0.2s ease;
}

.vouches-item:hover {
    transform: translateY(-6px);
    border: 1px solid #8b74f5;
}

.vouches-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vouches-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.vouches-item-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.vouches-item-handle {
    font-size: 13px;
    color: #a8a8b0;
    margin: 0;
}

.vouches-stars {
    color: #f5c451;
    font-size: 14px;
    margin-top: 10px;
}

.vouches-item-description {
    font-size: 15px;
    color: #d0d0d6;
    margin-top: 10px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 760px;
    margin: 24px auto 0;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #26262c;
    flex: 1;
    min-width: 300px;
    background: #1a191b;
    border-radius: 20px;
    padding: 24px;
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-item:hover {
    transform: translateY(-6px);
    border: 1px solid #8b74f5;
}

.pricing-item-title {
    margin: 0;
}

.pricing-item-notice {
    font-size: 15px;
    color: #ffffff;
    margin-top: 6px;
}

.pricing-item-description {
    font-size: 14px;
    color: #a8a8b0;
    margin: 6px 0 0;
}

.pricing-item-price {
    font-size: 32px;
    font-weight: 600;
    margin: 20px 0 0;
}

.pricing-item-price span {
    font-size: 14px;
    font-weight: 400;
    color: #a8a8b0;
}

.pricing-item-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    font-size: 15px;
    color: #d0d0d6;
    flex-grow: 1;
}

.pricing-item-features li {
    padding: 6px 0;
}

.pricing-item-features li::before {
    content: "- ";
    color: #8b74f5;
}

.pricing-item-cta {
    display: inline-block;
    align-self: flex-start;
    text-align: center;
    margin-top: 20px;
}
