/* --- Brand Colors & Variables --- */
:root {
    --bg-dark: #222222;
    --bg-card: #2c2c2c;
    --bg-header: #1a1a1a;
    --accent-pink: #d63384;
    --accent-green: #4ade80;
    --accent-yellow: #facc15;
    --text-white: #f3f4f6;
    --text-gray: #9ca3af;
    --border: #404040;
}

/* --- Base Overrides --- */
body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    /* font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif; */
}

h1,
h2,
h3,
h4,
h5 {
    margin-top: 0;
}

/* --- Utilities --- */
.text-pink {
    color: var(--accent-pink) !important;
}

.text-green {
    color: var(--accent-green) !important;
}
.text-yellow {
    color: var(--accent-yellow) !important;
}
.text-gray {
    color: var(--text-gray) !important;
}
.bg-pink {
    background-color: var(--accent-pink) !important;
}
.text-gradient-pink {
    font-weight: bolder;
    background: linear-gradient(
        to right,
        var(--accent-pink) 0%,
        #ff9ebb 50%,
        var(--accent-pink) 100%
    );
    /* background: linear-gradient(110deg, var(--accent-pink) 20%, #ff8da1 100%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Ensures the gradient is visible */
    display: inline;
}

.serif-font {
    font-family: Georgia, serif;
}

/* Flex Helper for Equal Height Columns */
.flex-row {
    display: flex;
    flex-wrap: wrap;
}
.flex-row .col {
    display: flex;
}
/* Vertical Center Row Utility */
.v-center-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* --- Header Styles --- */
header {
    border-bottom: 4px solid var(--accent-pink);
    background-color: #000;
}

.header-top {
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-logo-custom {
    border: 2px solid var(--accent-pink);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

.brand-text {
    color: var(--accent-pink);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
}

.brand-sub {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
}

.brand-sub span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.nav-custom a {
    color: var(--text-white);
    margin-left: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-custom a:hover {
    color: var(--accent-pink);
}

.header-strip {
    height: 80px;
    background: linear-gradient(to right, #380e1e, #1a1a1a);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-bottom: 1px solid #333;
}

.houses-pattern {
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 40px,
        rgba(250, 204, 21, 0.13) 40px,
        rgba(250, 204, 21, 0.13) 41px
    );
    position: absolute;
    bottom: 0;
}

.strip-text {
    margin-bottom: 10px;
    z-index: 2;
    color: var(--accent-yellow);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* --- Hero Section --- */
.hero-section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
    text-align: center;
}

/* Image Stack */
.image-stack {
    position: relative;
    margin-top: 20px;
}

.new-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background-color: var(--accent-yellow);
    color: black;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.main-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.interface-img-wrapper {
    position: absolute;
    bottom: -40px;
    right: -10px;
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.interface-img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--border);
    transform: rotate(-3deg);
}

.zap-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-green);
    color: #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Content */
.intro-headline {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.green-paragraph {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Feature Cards */
.feature-card {
    /* Glassy gradient effect */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(74, 222, 128, 0.2);
}

.icon-box {
    background-color: rgba(74, 222, 128, 0.1);
    padding: 8px;
    border-radius: 8px;
    color: var(--accent-green);
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 5px;
    color: var(--text-white);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0;
}

/* Buttons */
@keyframes gradient-border-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-custom-primary {
    position: relative;
    /* Inner background (Dark) */
    color: white;
    height: 48px;
    line-height: 44px; /* Adjust for border */
    padding: 0 16px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: none;
    display: inline-flex;
    align-items: center;

    /* Animated Gradient Border Magic */
    border: 2px solid transparent;
    background: linear-gradient(#222, #222) padding-box,
        /* Inner color */
            linear-gradient(
                90deg,
                var(--accent-pink),
                var(--accent-yellow),
                var(--accent-pink)
            )
            border-box; /* Gradient border */

    background-size: 100% 100%, 200% auto;
    background-position: 0 0, 0 0;
    animation: gradient-border-move 3s ease infinite;

    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-custom-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(214, 51, 132, 0.4);
    /* background stays dark with gradient border */
}

.btn-custom-primary i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.btn-custom-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-gray);
    height: 48px;
    line-height: 46px; /* -2px for border */
    padding: 0 24px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: none;
    box-shadow: none;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
}
.btn-custom-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: white;
}
.btn-custom-secondary i {
    margin-right: 10px;
    font-size: 1.3rem;
}
