/* TASTE SKILL PREMIUM DESIGN SYSTEM */

:root {
    /* Colors */
    --clr-base: #FFFFFF;
    --clr-text-main: #0F172A; /* Deeper premium dark */
    --clr-text-sec: #475569;  /* Cooler, luxurious slate */
    --clr-brand: #1E3A5F;
    --clr-action: #F97316;
    --clr-bg-alt: #F8FAFC;    /* Ultra-clean off-white */
    
    /* Layout */
    --container-max-w: 1200px;
    --section-gap: 7rem;     /* Reduced for tighter vertical rhythm */
    
    /* Shadows */
    --shadow-diffusion: 0 40px 80px -20px rgba(30, 58, 95, 0.12); /* Massive soft shadow */
    --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.04);
    --shadow-inner: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.05); /* True glass */
}

/* BASE RESET */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background-color: var(--clr-base);
    color: var(--clr-text-main);
    font-family: 'Satoshi', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: clip;
}

/* UTILITIES */
.section-container {
    max-width: var(--container-max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.bg-alt {
    background-color: var(--clr-bg-alt);
}

img, svg {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

/* ========================================================= */
/* BUTTONS (Magnetic + Premium Hover) */
/* ========================================================= */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    background-color: #16A34A; /* Verde cor de dinheiro */
    color: #FFF;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    overflow: hidden;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 0 20px 2px rgba(34, 197, 94, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 30px 6px rgba(34, 197, 94, 0.65);
    background-color: #15803d;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary .btn-text {
    position: relative;
    z-index: 2;
}

/* Button Glow (Taste Skill) */
.btn-primary .btn-glow {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.btn-primary:hover .btn-glow {
    transform: translate(-50%, -50%) scale(1);
}

.btn-large {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}


/* ========================================================= */
/* ASYMMETRIC HERO */
/* ========================================================= */
/* ========================================================= */
/* SCROLL-CONTROLLED VIDEO HERO */
/* ========================================================= */
.hero-wrapper {
    /* Height dictates how long the user scrolls to finish the video */
    height: 400vh;
    position: relative;
    background-color: #000;
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Gradient Overlay for Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
    padding-left: clamp(4rem, 10vw, 8rem);
    width: 100%;
    max-width: 850px;
    background-color: transparent;
    color: #FFFFFF;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px 8px 2px 2px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.highlight-text {
    color: var(--clr-action);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 550px;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-sticky {
        display: flex;
        align-items: center;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.9) 100%);
    }
    .hero-content {
        padding: 6rem 2rem;
    }
}


/* ========================================================= */
/* DOMINO EFFECT SECTION */
/* ========================================================= */
.domino-section {
    padding: var(--section-gap) 0;
    position: relative;
    background-color: var(--clr-base);
}

.domino-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 95, 0.15), transparent);
}

.section-header {
    margin-bottom: 5rem;
}

.section-header .section-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--clr-action);
    margin-bottom: 1rem;
}

.section-header .section-subtitle {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--clr-brand);
    max-width: 800px;
}

.domino-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 8rem;
    align-items: start;
    position: relative;
}

/* Conditional Connecting Line (Desktop Only) */
.domino-grid::before {
    content: '';
    position: absolute;
    top: 5rem; /* Aligned roughly with the center of the card number */
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 95, 0.15) 10%, rgba(30, 58, 95, 0.15) 90%, transparent);
    z-index: 0;
}

@media (max-width: 1024px) {
    .domino-grid::before {
        display: none;
    }
}

.domino-card {
    padding: 2.5rem;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 2px 16px 2px 2px;
    box-shadow: 0 10px 30px -10px rgba(30, 58, 95, 0.05), inset 0 2px 4px rgba(255,255,255,0.8);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Taste Skill Asymmetry */
.domino-card:nth-child(even) {
    transform: translateY(3rem);
}
.domino-card.is-visible:nth-child(even) {
    transform: translateY(3rem) !important;
}
.domino-card.is-visible:hover:nth-child(even) {
    transform: translateY(calc(3rem - 8px)) !important;
}

.domino-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(30, 58, 95, 0.15);
    border-color: rgba(30, 58, 95, 0.15);
}

.card-number {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(30, 58, 95, 0.2);
    margin-bottom: 1.5rem;
}

.domino-card h4 {
    font-size: 1.25rem;
    color: var(--clr-text-main);
    margin-bottom: 1rem;
}

.domino-card p {
    color: var(--clr-text-sec);
    font-size: 1.05rem;
    line-height: 1.6;
}

.domino-conclusion {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-brand);
    margin-bottom: 3rem;
}

.story-block {
    text-align: left;
    border-left: 2px solid var(--clr-action);
    padding-left: 2rem;
    margin-bottom: 3rem;
}

.story-block p {
    font-size: 1.25rem;
    color: var(--clr-text-sec);
    margin-bottom: 1rem;
}

.final-statement {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--clr-text-main);
}

@media (max-width: 1024px) {
    .domino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .domino-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================================= */
/* RESULT SECTION (BLUE BACKGROUND w/ TEXTURE) */
/* ========================================================= */
.result-section {
    padding: var(--section-gap) 0;
    text-align: center;
    background-color: var(--clr-brand);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Texture: Engineering Blueprint Grid */
.result-section::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.3; /* Increased visibility */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 1;
}

.result-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.result-content .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-weight: 800;
}

.result-content .section-subtitle {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* ========================================================= */
/* DELIVERABLES SECTION (EDITORIAL LIST) */
/* ========================================================= */
.deliverables-section {
    padding: var(--section-gap) 0;
    position: relative;
    background-color: var(--clr-bg-alt);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.editorial-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.editorial-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
    transition: background-color 0.4s;
}

/* Soft hover hint covering the row */
.editorial-row:hover {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.editorial-row:last-child {
    border-bottom: none;
}

.editorial-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    position: relative;
}

.editorial-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.8;
    color: rgba(30, 58, 95, 0.08); /* Faint large number */
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.editorial-visual .icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 2px 12px 2px 2px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-brand);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    margin: 0; /* Resetting */
}

/* Orange fill interaction line */
.editorial-row::before {
    content: '';
    position: absolute;
    left: -2rem; /* Bleed off a bit */
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background-color: var(--clr-action);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.editorial-row:hover::before {
    transform: translateY(-50%) scaleY(1);
}

.editorial-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--clr-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.editorial-desc {
    font-size: 1.15rem;
    color: var(--clr-text-sec);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 700px;
}

/* Editorial Bullets Overhaul */
.editorial-bullets {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.editorial-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--clr-text-main);
    font-weight: 500;
}

.editorial-bullets li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--clr-action);
    margin-top: 2px;
}

@media (max-width: 768px) {
    .editorial-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }
    
    .editorial-visual {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
        text-align: left;
    }
    
    .editorial-number {
        margin-bottom: 0;
        font-size: 3.5rem;
    }
    
    .editorial-row::before {
        left: -1rem;
    }
}

.bento-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-text-main);
    margin-bottom: 2rem;
}

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

.bento-item {
    background: #FFFFFF;
    border-radius: 2px 24px 2px 2px;
    padding: 3rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px -10px rgba(30, 58, 95, 0.05), inset 0 2px 4px rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}

.bento-item::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: var(--shadow-inner);
    border-radius: inherit;
    pointer-events: none;
    z-index: 10;
}

/* Spotlight Effect */
.bento-item::after, .domino-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
    background: radial-gradient(circle 800px at var(--mouse-x) var(--mouse-y), rgba(30, 58, 95, 0.05), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.bento-item:hover::after, .domino-card:hover::after {
    opacity: 1;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -20px rgba(30, 58, 95, 0.15);
    border-color: rgba(30, 58, 95, 0.15);
}

.bento-large {
    grid-column: span 1;
    grid-row: span 2;
    background: var(--clr-brand);
    color: var(--clr-base);
}

.bento-large p { color: rgba(255,255,255,0.8); }

.bento-medium {
    grid-column: span 1;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 2px 16px 2px 2px;
    background: var(--clr-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--clr-brand);
}

.bento-large .icon-wrapper {
    background: rgba(255,255,255,0.1);
    color: var(--clr-base);
}

.bento-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bento-content p {
    font-size: 1.125rem;
    color: var(--clr-text-sec);
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-large {
        grid-row: span 1;
    }
}
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================================= */
/* CLOSING SECTION (SPLIT DECISION) */
/* ========================================================= */
.closing-section {
    background-color: var(--clr-text-main); /* Deep dark background */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.closing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: calc(var(--section-gap) * 0.8) 2rem;
    position: relative;
    z-index: 2;
}

.decision-board {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    position: relative;
    padding: 6rem;
    border-radius: 0;
    background: 
        radial-gradient(circle at top right, rgba(30, 58, 95, 0.6), transparent 60%),
        radial-gradient(circle at bottom left, rgba(30, 58, 95, 0.3), transparent 50%),
        rgba(15, 23, 42, 0.8); /* Semi-transparent base to let background texture peak through slightly or stand alone */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    overflow: hidden;
}

.decision-board > * {
    position: relative;
    z-index: 2;
}

.decision-column {
    display: flex;
    flex-direction: column;
}

.basic-path {
    opacity: 0.5;
    transition: opacity 0.4s;
    padding-right: 2rem;
}

.basic-path:hover {
    opacity: 0.8;
}

.premium-path {
    padding-left: 2rem;
}

.decision-label {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.highlight-label {
    color: var(--clr-action);
}

.decision-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.8);
}

.premium-path strong {
    color: #FFFFFF;
    font-weight: 700;
}

.decision-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.divider-line {
    width: 1px;
    flex-grow: 1;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent);
}

.divider-badge {
    padding: 1rem;
    background: rgba(30, 58, 95, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 2rem 0;
}

.btn-massive {
    font-size: 1.15rem;
    padding: 1.5rem 3rem;
    align-self: flex-start;
    border-radius: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
    background-color: #0B1120;
}

@media (max-width: 1024px) {
    .decision-board {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 2rem;
    }
    .decision-divider {
        flex-direction: row;
        width: 100%;
    }
    .divider-line {
        height: 1px;
        width: auto;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent);
    }
    .divider-badge {
        margin: 0 2rem;
    }
    .basic-path { padding-right: 0; }
    .premium-path { padding-left: 0; }
}

/* ========================================================= */
/* PROFILE SECTION                                           */
/* ========================================================= */
.profile-section {
    padding: var(--section-gap) 0;
    background-color: var(--clr-bg-alt);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.profile-heading {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--clr-text-main);
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.03em;
}

.profile-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 0;
    padding: 3.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 60px -20px rgba(30, 58, 95, 0.10);
}

/* Container that holds and clips the rotated image */
.profile-image-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(30, 58, 95, 0.25);
    position: relative;
    background: var(--clr-brand);
}

/* The JPG is landscape (horizontal) stored without EXIF rotation.
   Rotate -90deg and scale to fill the portrait wrapper correctly. */
.profile-image-wrap img {
    /* Set to 0 degrees as requested (90 left from previous 90 right) */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none;
}

/* Bio */
.profile-bio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.profile-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.4rem 1rem;
    background: rgba(30, 58, 95, 0.08);
    color: var(--clr-brand);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0;
    border: 1px solid rgba(30, 58, 95, 0.12);
}

.profile-name {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: var(--clr-text-main);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.profile-desc {
    font-size: 1.1rem;
    color: var(--clr-text-sec);
    line-height: 1.7;
    max-width: 460px;
}

.profile-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    background: var(--clr-bg-alt);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-main);
}

.credential-badge svg {
    width: 14px;
    height: 14px;
    color: #16A34A;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .profile-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
    }

    .profile-image-wrap {
        max-width: 260px;
        margin: 0 auto;
    }

    .profile-bio {
        text-align: center;
        align-items: center;
    }

    .profile-desc {
        max-width: 100%;
        text-align: justify;
    }

    .profile-credentials {
        justify-content: center;
    }

    .profile-logo-wrapper {
        justify-content: center;
    }
}

/* ========================================================= */
/* MOTION SYSTEM (REVEAL VARIANTS) */
/* ========================================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.2, 1), transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.2, 1, 0.2, 1);
}
.reveal-fade.is-visible {
    opacity: 1;
}

.reveal-line {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.2, 1), transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.reveal-line.is-visible {
    opacity: 1;
    transform: scaleX(1);
}

/* Stagger base styles */
.reveal-stagger-child {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.2, 1, 0.2, 1), transform 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}
.reveal-stagger-child.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Base card reveals (domino, bento, editorial) */
.domino-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.2, 1), transform 0.8s cubic-bezier(0.2, 1, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
}
.domino-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bento-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.2, 1), transform 0.8s cubic-bezier(0.2, 1, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
}
.bento-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.editorial-row {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.2, 1), transform 0.8s cubic-bezier(0.2, 1, 0.2, 1), background-color 0.4s;
}
.editorial-row.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Results section highlights */
.result-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.result-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}
.result-highlight-item svg {
    color: var(--clr-action);
    width: 20px;
    height: 20px;
}

/* ========================================================= */
/* BRAND LOGO INTEGRATION */
/* ========================================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem clamp(2rem, 5vw, 6rem);
    z-index: 100;
    pointer-events: none;
}

.brand-logo-header {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transform-origin: left center;
}

.profile-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-top: -0.5rem;
}

.profile-brand-logo {
    height: 108px;
    width: auto;
    max-width: 100%;
    display: block;
    opacity: 0.85;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand-logo {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

/* ========================================================= */
/* EXTRACTED INLINE CLASSES */
/* ========================================================= */
.new-benefits-section {
    padding: var(--section-gap) 0;
    background-color: var(--clr-base);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.benefits-container {
    text-align: center;
    max-width: 800px;
}
.benefits-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}
.benefits-desc {
    margin: 0 auto 3rem auto;
    font-size: 1.25rem;
}
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
}
.benefits-list li {
    font-size: 1.15rem;
}
.benefits-list li svg {
    width: 24px;
    height: 24px;
}
.closing-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-wrap: balance;
}
.closing-desc {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.25rem;
    font-weight: 400;
}
.closing-footer-text {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
}
#footer-cta {
    align-self: center;
    margin-bottom: 2rem;
}
#footer-cta .btn-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

/* ========================================================= */
/* COMPREHENSIVE RESPONSIVE SYSTEM */
/* ========================================================= */
@media (max-width: 768px) {
    /* Layout & Spacing */
    .section-container {
        padding: 0 1.25rem;
    }
    
    /* Hero Adjustments & Overlap Prevention */
    .site-header {
        padding: 1.5rem 1.25rem;
    }
    .hero-content {
        padding: 8rem 1.25rem 4rem 1.25rem;
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    /* Proportional Logo Scaling */
    .brand-logo-header, .profile-brand-logo, .footer-brand-logo {
        height: auto;
        width: 100%;
        max-width: 160px;
    }

    /* Domino Grid Asymmetry Fix */
    .domino-card:nth-child(even),
    .domino-card.is-visible:nth-child(even),
    .domino-card.is-visible:hover:nth-child(even) {
        transform: translateY(0) !important;
    }
    .domino-card:hover {
        transform: translateY(-4px) !important;
    }

    /* Result Highlights Stacking */
    .result-highlights {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    /* Decision Board Padding */
    .decision-board {
        padding: 4rem 1.5rem;
    }
}

@media (max-height: 650px) {
    /* Hero Vertical Compression */
    .hero-content {
        padding-top: 6rem;
    }
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    /* Deep Mobile Fixes */
    .btn-primary {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    .btn-text {
        white-space: normal;
        text-align: center;
        flex-wrap: wrap;
    }
    .btn-massive {
        padding: 1.25rem 1.5rem;
    }
    .profile-card {
        padding: 1.5rem;
    }
}
