:root {
    --bg-color: #FF5E00; /* Vibrant Orange */
    --accent-color: #D4FF00; /* Neon Lime */
    --dark-bg: #111111;
    --light-bg: #FFFFFF;
    --text-dark: #111111;
    --text-light: #FFFFFF;
    --radius-lg: 40px;
    --radius-md: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Editorial Header */
.editorial-header {
    position: relative;
    width: 100%;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #FF7222 0%, #E65000 100%);
}

.massive-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28vw;
    font-weight: 900;
    color: var(--light-bg);
    line-height: 0.8;
    letter-spacing: -0.06em;
    z-index: 0;
    white-space: nowrap;
    opacity: 0.95;
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin-top: 15vh;
    gap: 3rem;
}

.header-card {
    border-radius: var(--radius-md);
    padding: 2.5rem;
    width: 320px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.dark-card {
    background-color: var(--dark-bg);
    color: var(--text-light);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.white-card {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.center-portrait {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    height: 70vh;
}

.center-portrait img {
    height: 100%;
    width: 100%;
    max-width: 500px;
    object-fit: cover;
    border-radius: 999px; /* Pill shape for central image based on app style */
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
    border: 8px solid var(--light-bg);
}

.tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--light-bg);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bento Grid */
.container {
    max-width: 1200px;
    margin: -10vh auto 6rem;
    position: relative;
    z-index: 20;
    padding: 0 2rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: 1.5rem;
}

.bento-card {
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
}

.large-card {
    grid-column: span 2;
}

.wide-card {
    grid-column: span 3;
}

.accent-card {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.image-card {
    background-size: cover;
    background-position: center;
    color: var(--light-bg);
    justify-content: flex-end;
}
.image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
}
.image-card .overlay-content {
    position: relative;
    z-index: 2;
}

/* Typography Inside Cards */
.bento-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Lists */
.custom-list {
    list-style: none;
    margin-top: 1rem;
}
.custom-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 1.1rem;
    font-weight: 500;
}
.dark-card .custom-list li {
    border-bottom-color: rgba(255,255,255,0.08);
}
.custom-list li:last-child {
    border-bottom: none;
}

.tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}
.tag-list li {
    background: #F3F4F6;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.minimal-list {
    list-style: none;
}
.minimal-list li {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

/* Elements */
.icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    position: absolute;
    top: 3rem;
    right: 3rem;
    color: var(--text-dark);
}

.addon-box {
    margin-top: auto;
    background: rgba(255,255,255,0.08);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
}
.addon-price {
    font-weight: 800;
    color: var(--accent-color);
    font-size: 1.4rem;
}

/* Prices */
.price-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 4rem;
}
.price-main {
    flex: 1;
}
.amount {
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.06em;
}
.currency {
    font-size: 3.5rem;
    font-weight: 800;
    vertical-align: top;
    margin-right: -10px;
}
.period {
    display: block;
    font-weight: 800;
    font-size: 1.4rem;
}
.subtext {
    display: block;
    opacity: 0.7;
    margin-top: 0.5rem;
    font-weight: 500;
}
.price-divider {
    width: 2px;
    height: 80%;
    background: rgba(0,0,0,0.1);
}
.price-calc {
    flex: 1;
}
.price-calc .total-amount {
    font-size: 3.5rem;
    margin-top: 0.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

/* Conditions Grid */
.conditions-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
}
.c-item {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 2rem 1rem;
    border-radius: 24px;
    text-align: center;
}
.c-icon {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}
.c-item p {
    font-size: 1rem;
    opacity: 0.8;
}

/* CTA Card */
.cta-card {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 3rem 4rem;
}
.action-btn {
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s, background 0.2s;
    white-space: nowrap;
}
.action-btn:hover {
    transform: scale(1.05);
    background: #bce600;
}

@media (max-width: 1024px) {
    .header-content {
        flex-direction: column;
        margin-top: 15vh;
        gap: 2rem;
    }
    .header-card {
        width: 100%;
        max-width: 450px;
    }
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .large-card, .cta-card {
        grid-column: span 2;
    }
    .wide-card {
        grid-column: span 2;
    }
    .massive-text {
        font-size: 26vw;
        top: 25%;
    }
}
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .large-card, .wide-card, .cta-card {
        grid-column: span 1;
    }
    .price-wrapper {
        flex-direction: column;
        text-align: left;
        gap: 2rem;
    }
    .price-divider {
        width: 100%;
        height: 2px;
    }
    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .center-portrait img {
        border-radius: 40px;
    }
}
