/* ========================
   RESET & BASE
======================== */
:root {
    --black: #000000;
    --white: #ffffff;
    --off-white: #f0ede8;
    --gray: #777777;
    --dark-gray: #111111;
    --mid-gray: #1e1e1e;
    --green: #3d6b40;
    --green-glow: rgba(61, 107, 64, 0.4);
    --gold: #c8a96e;
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.08);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 4px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: var(--font-body); background: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ========================
   ANIMATIONS
======================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================
   HEADER / NAV
======================== */
#nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 900;
    transition: background 0.4s, border-bottom 0.4s;
}
#nav.scrolled {
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 6px;
    cursor: pointer;
    transition: opacity 0.3s;
}
.logo:hover { opacity: 0.6; }

#nav ul {
    display: flex;
    gap: 40px;
}
#nav ul li a {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity 0.3s;
}
#nav ul li a:hover { opacity: 0.5; }

.btn-cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    padding: 8px 16px;
    border: 1px solid var(--glass-border);
    border-radius: 2px;
    transition: border-color 0.3s;
}
.btn-cart:hover { border-color: var(--white); }
.cart-count {
    background: var(--green);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px; right: -6px;
}

/* ========================
   HERO
======================== */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.55) 40%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 20px;
}

.hero-lettering {
    width: 70%;
    max-width: 800px;
    margin-bottom: -20px;
    animation: fadeInUp 1.2s ease-out 0.2s both;
    filter: drop-shadow(0 0 60px rgba(0,0,0,0.7));
}
.hero-lettering img { width: 100%; }

.hero-text-block {
    animation: fadeInUp 1.2s ease-out 0.5s both;
    margin-top: 20px;
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.btn-hero {
    display: inline-block;
    padding: 16px 48px;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.btn-hero:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.hero-avatar {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    z-index: 4;
    animation: fadeIn 1.5s ease-out 0.8s both;
    filter: drop-shadow(0 -10px 30px rgba(0,0,0,0.9));
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 4;
    opacity: 0.5;
}
.hero-scroll-hint span {
    font-size: 10px;
    letter-spacing: 4px;
    writing-mode: vertical-rl;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--white);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ========================
   ETHOS SECTION
======================== */
.ethos-section {
    padding: 160px 0;
    background: #000000; /* Pure black to blend with image background */
    border-top: 1px solid var(--glass-border);
}

.ethos-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ethos-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ethos-headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--white);
}
.ethos-headline strong {
    font-weight: 800;
}

.ethos-body p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    line-height: 1.6;
}
.ethos-body p strong {
    color: var(--white);
    font-weight: 700;
}

.ethos-sub {
    font-size: 1.1rem !important;
    opacity: 0.5;
}

.ethos-image-wrapper {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.ethos-avatar-img {
    width: 100%;
    max-width: 480px;
    filter: contrast(1.05) brightness(0.9);
    /* Aggressive mask to hide arm tattoo and blend edges */
    mask-image: linear-gradient(to top, transparent 5%, black 35%),
                linear-gradient(to left, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 5%, black 35%),
                        linear-gradient(to left, black 75%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

@media (max-width: 1024px) {
    .ethos-inner { 
        grid-template-columns: 1fr; 
        gap: 80px; 
        text-align: center; 
    }
    .ethos-text { align-items: center; }
    .ethos-avatar-img { margin: 0 auto; }
}



/* ========================
   BRAND STATEMENT
======================== */
.statement-section {
    padding: 140px 0;
    text-align: center;
    background: var(--black);
    position: relative;
    overflow: hidden;
}
.statement-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(61,107,64,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.statement-badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 40px;
}

.statement-h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 60px;
}
.statement-h2 em {
    font-style: italic;
    color: var(--gold);
}

.statement-body {
    max-width: 560px;
    margin: 0 auto 60px;
}
.statement-body p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
    margin-bottom: 12px;
}
.statement-body strong { color: var(--white); }

.btn-primary {
    display: inline-block;
    padding: 18px 56px;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(61,107,64,0.4);
}

/* ========================
   DROP CATALOG
======================== */
.drop-section {
    padding: 120px 0 160px;
    background: var(--dark-gray);
    border-top: 1px solid var(--glass-border);
}

.drop-header {
    text-align: center;
    margin-bottom: 72px;
}
.drop-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.drop-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.drop-sub {
    color: rgba(255,255,255,0.45);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.product-card {
    cursor: pointer;
    overflow: hidden;
    background: var(--mid-gray);
    position: relative;
}

.product-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition), filter 0.4s;
}
.product-card:hover .product-thumb img {
    transform: scale(1.07);
    filter: brightness(0.55);
}

.card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}
.product-card:hover .card-overlay { opacity: 1; }
.card-ver {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 5px;
    font-weight: 800;
    border: 1px solid var(--white);
    padding: 10px 28px;
    border-radius: var(--radius);
    color: var(--white);
}

.card-info {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--glass-border);
}
.card-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}
.btn-ver {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 7px 18px;
    border-radius: var(--radius);
    transition: border-color 0.3s, background 0.3s;
}
.btn-ver:hover {
    border-color: var(--white);
    background: var(--glass);
}

/* Bag of Drop special card */
.product-card--bag {
    border-color: rgba(200, 169, 110, 0.3);
}
.product-card--bag:hover {
    border-color: var(--gold);
}
.bag-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #000;
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    z-index: 2;
}

/* ========================
   PRODUCT MODAL
======================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: var(--dark-gray);
    border: 1px solid var(--glass-border);
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: scaleIn 0.4s ease-out;
    border-radius: 4px;
}

.modal-close {
    position: absolute;
    top: 20px; right: 24px;
    font-size: 20px;
    color: var(--gray);
    z-index: 10;
    transition: color 0.3s;
}
.modal-close:hover { color: var(--white); }

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.modal-img {
    aspect-ratio: 1;
    overflow: hidden;
}
.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modal-tag {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.modal-name {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.modal-pitch {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    line-height: 1.8;
    padding-left: 16px;
    border-left: 2px solid var(--green);
    margin-bottom: 32px;
}

.modal-price-row {
    margin-bottom: 32px;
}
.modal-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.size-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 12px;
}
.sizes {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
}
.size-btn {
    width: 48px; height: 48px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    border-radius: var(--radius);
    transition: border-color 0.2s, background 0.2s;
}
.size-btn:hover { border-color: var(--white); }
.size-btn.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-buy {
    width: 100%;
    padding: 18px;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    margin-bottom: 24px;
}
.btn-buy:hover {
    background: #2d5230;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(61,107,64,0.5);
}

.guarantees {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.guarantees li {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
}

/* ========================
   CHECKOUT DRAWER
======================== */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.drawer-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.drawer {
    position: absolute;
    right: 0; top: 0;
    width: 440px;
    max-width: 100%;
    height: 100%;
    background: var(--dark-gray);
    border-left: 1px solid var(--glass-border);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--transition);
    overflow-y: auto;
}
.drawer-backdrop.open .drawer {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.drawer-header h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 4px;
    font-weight: 800;
}
.drawer-header button {
    color: var(--gray);
    font-size: 18px;
    transition: color 0.2s;
}
.drawer-header button:hover { color: var(--white); }

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 16px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}
.cart-item img {
    width: 72px; height: 72px;
    object-fit: cover;
    border-radius: 2px;
}
.ci-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.ci-size {
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
}
.ci-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--glass-border);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
}

.cart-note {
    font-size: 11px;
    color: var(--gray);
    text-align: center;
    line-height: 1.6;
}

.empty-cart {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    padding: 60px 0;
}

.shipping-badge {
    text-align: center;
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.shipping-badge.hint {
    background: rgba(200,169,110,0.1);
    border: 1px solid rgba(200,169,110,0.3);
    color: var(--gold);
}
.shipping-badge.active {
    background: rgba(61,107,64,0.15);
    border: 1px solid rgba(61,107,64,0.4);
    color: var(--green);
}

/* ========================
   FOOTER
======================== */
footer {
    padding: 80px 0 0;
    border-top: 1px solid var(--glass-border);
    background: #050505;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 80px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 5px;
    margin-bottom: 12px;
}
.footer-inner > div > p {
    color: var(--gray);
    font-size: 14px;
}

.footer-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gray);
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-credits a {
    color: var(--white);
    text-decoration: none;
}

.footer-credits a:hover {
    text-decoration: underline;
}

.footer-links li {
    margin-bottom: 10px;
}
.footer-links li a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}
.footer-links li a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    text-align: center;
    padding: 24px;
}
.footer-bottom p {
    font-size: 12px;
    color: var(--gray);
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
    .ethos-inner { gap: 48px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-inner { padding: 18px 24px; }
    #nav ul { display: none; }

    .hero-lettering { width: 88%; }
    .hero-h1 { font-size: 1.4rem; }

    .ethos-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .ethos-avatar-img { max-width: 200px; margin: 0 auto; }
    .ethos-text blockquote { padding-left: 0; border-left: none; }

    .statement-h2 { letter-spacing: -1px; }

    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }

    .modal-grid { grid-template-columns: 1fr; }
    .modal-img { aspect-ratio: 1; }
    .modal-details { padding: 32px 24px; }

    .footer-inner { grid-template-columns: 1fr; gap: 40px; }

    .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .hero-avatar { width: 120px; bottom: -50px; }
    .bag-grid { gap: 32px; }
    .bag-price-new { font-size: 2.4rem; }
}

/* ========================
   BAG OF DROP SECTION
======================== */
.bag-section {
    padding: 120px 0 140px;
    background: var(--black);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}
.bag-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(61,107,64,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.bag-header {
    text-align: center;
    margin-bottom: 72px;
}

.bag-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bag-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bag-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: border-color 0.3s;
}
.bag-feature:hover {
    border-color: rgba(61,107,64,0.5);
}

.bag-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61,107,64,0.15);
    border-radius: var(--radius);
}

.bag-feature h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.bag-feature p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.bag-price-card {
    background: var(--glass);
    border: 1px solid rgba(61,107,64,0.3);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
    position: relative;
}
.bag-price-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(61,107,64,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.bag-price-old {
    font-size: 1.1rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 8px;
}
.bag-price-new {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 4px;
}
.bag-installment {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.bag-savings {
    display: inline-block;
    background: rgba(61,107,64,0.2);
    color: var(--green);
    padding: 6px 20px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.bag-cta {
    display: block;
    text-align: center;
    text-decoration: none;
}
.bag-note {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
}

/* ========================
   MANIFESTO
======================== */
.manifesto-section {
    padding: 140px 0;
    text-align: center;
    background: var(--dark-gray);
    border-top: 1px solid var(--glass-border);
    position: relative;
}
.manifesto-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(61,107,64,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.manifesto-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    color: var(--white);
}
.manifesto-quote em {
    font-style: italic;
    color: var(--gold);
}

/* BAG responsive */
@media (max-width: 768px) {
    .bag-grid { grid-template-columns: 1fr; gap: 40px; }
    .bag-price-card { padding: 36px 24px; }
    .howto-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .brand-values { flex-wrap: wrap; gap: 24px; }
}

/* ========================
   HOW IT WORKS
======================== */
.howto-section {
    padding: 100px 0;
    background: var(--black);
    border-top: 1px solid var(--glass-border);
}
.howto-header {
    text-align: center;
    margin-bottom: 64px;
}
.howto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Numbering explainer */
.howto-example {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
}
.howto-number-demo {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
}
.howto-number-demo .num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.howto-number-demo .sep {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gray);
    font-weight: 300;
}
.howto-labels {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.howto-label {
    text-align: center;
}
.howto-label .arrow {
    font-size: 18px;
    color: var(--green);
    margin-bottom: 4px;
}
.howto-label p {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    line-height: 1.5;
    max-width: 100px;
}
.howto-label strong {
    color: var(--white);
    font-weight: 600;
}

/* Steps list */
.howto-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.howto-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.step-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--green);
    min-width: 48px;
    line-height: 1;
}
.howto-step h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.howto-step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* ========================
   PRA QUEM É
======================== */
.audience-section {
    padding: 120px 0;
    background: var(--black);
    border-top: 1px solid var(--glass-border);
}
.audience-header {
    text-align: center;
    margin-bottom: 80px;
}
.audience-header .drop-title {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}
.audience-header .drop-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.4);
    max-width: 500px;
    margin: 0 auto;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px; /* Thin line separator look */
    background: var(--glass-border);
    border: 1px solid var(--glass-border);
}

.audience-card {
    background: var(--black);
    padding: 60px 48px;
    text-align: left;
    position: relative;
    transition: background 0.3s;
}
.audience-card:hover {
    background: #080808;
}

.card-num {
    position: absolute;
    top: 32px; left: 48px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray);
    opacity: 0.5;
}

.audience-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 32px;
    margin-top: 20px;
}

.card-category {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 16px;
}

.audience-card h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--white);
}

.audience-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}
.audience-card p strong {
    color: var(--white);
}

.audience-footer {
    text-align: center;
    margin-top: 80px;
}
.footer-cta-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.footer-subtext {
    color: var(--gray);
    letter-spacing: 1px;
}

/* ========================
   BRAND VALUES BAR
======================== */
.brand-values-bar {
    padding: 60px 0;
    background: var(--black);
    border-top: 1px solid var(--glass-border);
}
.brand-values {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.brand-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.brand-value .bv-icon {
    font-size: 18px;
    color: var(--green);
}

/* ========================
   URGENCY SECTION
======================== */
.urgency-section {
    padding: 100px 0;
    background: var(--black);
}
.urgency-card {
    background: var(--dark-gray);
    border: 1px solid var(--glass-border);
    padding: 80px 48px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.urgency-badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 32px;
}
.urgency-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
}
.urgency-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.urgency-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
}
.stat-label {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gray);
}

/* ========================
   CTA FINAL SECTION
======================== */
.cta-final-section {
    padding: 160px 0;
    background: var(--dark-gray);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}
.cta-final-content {
    max-width: 800px;
    margin: 0 auto;
}
.cta-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 60px;
}
.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ========================
   GLOBAL RESPONSIVE FIXES
======================== */
@media (max-width: 768px) {
    .urgency-stats { gap: 24px; }
    .stat-num { font-size: 2rem; }
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btns .btn-primary, .cta-btns .btn-hero { width: 100%; }
    .statement-h2 { font-size: 3.5rem; }
}
